@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;600;800&display=swap');

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #ececec, #ffffff);
    font-family: "Montserrat", sans-serif;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 1.5s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.title {
    font-size: 5rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(180deg, #000, #555);
    -webkit-background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 10px;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.buttons {
    margin-top: 60px;
    display: flex;
    gap: 30px;
}

.btn {
    text-decoration: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
    border: 2px solid #444;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.btn::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 3px;
    bottom: 0;
    left: -10%;
    background: #000;
    transform: translateX(-100%);
    transition: 0.4s ease;
}

.btn:hover::before {
    transform: translateX(0);
}

.btn:hover {
    transform: scale(1.10);
    border-color: #000;
}
