@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    background-image: url('./images/20231222_143117.jpg');
    background-size: cover;
    background-position: center;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #fff;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Darker overlay */
    z-index: 1;
}

.content {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    width: 90%;
    max-width: 600px;
    padding: 2em;
    border-radius: 10px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.content:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.3);
}

h1 {
    font-size: 2em;
    color: #1abc9c; /* Vibrant color for heading */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeIn 2s ease-in-out;
}

h3 {
    color: #2980b9; /* Darker color for subtitles */
    animation: fadeIn 2s ease-in-out;
}

p {
    color: #34495e; /* Darker color for paragraphs */
    animation: fadeIn 2s ease-in-out;
}

.time {
    color: #e74c3c; /* Vibrant color for time */
    font-weight: bold;
    animation: fadeIn 2s ease-in-out;
}

.footer {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 2;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 768px) {
    .content {
        width: 95%;
        padding: 1em;
        margin-bottom: 80px;
    }
    h1 {
        font-size: 1.5em;
    }
    .footer {
        padding: 15px 0;
    }
}