/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300;600&display=swap');

body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    background: linear-gradient(135deg, #1e1e1e, #333);
    font-family: 'Fira Code', monospace;
    color: white;
}

.container {
    animation: fadeIn 1.5s ease-in-out;
    padding: 20px;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 20px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.title {
    font-size: 2.5rem;
    font-weight: 600;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.info-box {
    padding: 15px;
    border-radius: 10px;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: #0078d4;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn:hover {
    background: #005bb5;
    transform: scale(1.1);
}

.footer {
    margin-top: 20px;
}

.back-btn {
    background: #ff4b4b;
}

.back-btn:hover {
    background: #d13c3c;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
