/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial, sans-serif';
    background: linear-gradient(135deg, #f9f9f9, #e9ecef);
    color: #2c3e50;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background: rgba(255, 255, 255, 1);
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    padding: 40px 60px;
    text-align: center;
    animation: fadeIn 0.8s ease-in-out;
}

h1 {
    margin-bottom: 25px;
    color: #2c3e50;
    font-size: 2.4rem;
    font-weight: bold;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    margin: 18px 0;
}

a {
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(90deg, #4a90e2, #34495e);
    padding: 14px 24px;
    border-radius: 6px;
    font-size: 1.2rem;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

a:hover {
    background: linear-gradient(90deg, #34495e, #4a90e2);
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.animated-link {
    animation: slideIn 0.8s ease-in-out;
}

/* Fade-in animation for container */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Slide-in animation for links */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
