body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    animation: backgroundAnimation 10s infinite alternate;
}

@keyframes backgroundAnimation {
    0% { background: linear-gradient(135deg, #f5f7fa, #c3cfe2); }
    100% { background: linear-gradient(135deg, #c3cfe2, #f5f7fa); }
}

.container {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    text-align: center;
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

h1 {
    color: #333333;
    margin-bottom: 20px;
    font-weight: 700;
}

p {
    color: #666666;
    font-weight: 400;
}

a {
    color: #007BFF;
    text-decoration: none;
    font-weight: 700;
}

a:hover {
    text-decoration: underline;
}
