body {
    font-family: 'Poppins', sans-serif;
    background-color: #0f1217;
    color: #ffffff;
    text-align: center;
    margin: 0;
    padding-top: 80px;
}

.logo {
    width: 140px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1.5s ease;
}

h1 {
    font-size: 42px;
    font-weight: 600;
    color: #3fb1b5;
    margin-bottom: 15px;
    animation: fadeIn 2s ease;
}

p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 25px;
    color: #ccc;
    animation: fadeIn 2.5s ease;
}

.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 25px;
    font-size: 16px;
    color: #ffffff;
    background-color: #3fb1b5;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    animation: fadeIn 3s ease;
}

.btn:hover {
    background-color: #369da0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}