body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}
.container {
    position: relative;
    text-align: center;
    color: white;
}
.background-image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.header {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
}
.header img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}
.header h1 {
    font-size: 24px;
    margin: 0;
}
.nav {
    position: absolute;
    top: 20px;
    right: 20px;
}
.nav a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}
.nav a:hover {
    color: #FFD700;
}
.content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    text-align: left;
    max-width: 80%;
    animation: fadeIn 1s ease-in-out;
}
.content h2 {
    font-size: 72px;
    margin: 0;
    animation: slideInFromLeft 1.5s ease-in-out;
}
.content p {
    font-size: 24px;
    color: #FFD700;
    animation: slideInFromLeft 2s ease-in-out;
}
.button {
    margin-top: 20px;
}
.button a {
    text-decoration: none;
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 18px;
    margin-right: 10px;
    transition: background-color 0.3s, transform 0.3s;
    animation: fadeIn 2.5s ease-in-out;
}
.button a:hover {
    background-color: white;
    color: black;
    transform: scale(1.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .content h2 {
        font-size: 48px;
    }
    .content p {
        font-size: 18px;
    }
    .button a {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .content {
        left: 5%;
        max-width: 90%;
    }
    .content h2 {
        font-size: 36px;
    }
    .content p {
        font-size: 16px;
    }
}