* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-image: url('bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.content {
    max-width: 500px;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    margin-bottom: 40px;
}

.logo img {
    max-width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}

.text {
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
}

.text p {
    margin-bottom: 20px;
}

.text p:last-child {
    margin-bottom: 0;
}

.text a {
    color: #ffffff;
    text-decoration: underline;
    transition: opacity 0.8s ease-out;
}

.text a:hover {
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .text {
        font-size: 18px;
    }
    
    .logo {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .text {
        font-size: 16px;
    }
    
    .logo {
        margin-bottom: 25px;
    }
}