* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto Slab', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    flex-direction: column;
    gap: 20px;
}

.date-link {
    color: rgb(249, 231, 255);
    font-size: 24px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.date-link:hover {
    opacity: 1;
    text-decoration: underline;
}
.date-display {
    font-size: 72px;
    font-weight: bold;
    color: white;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    letter-spacing: 4px;
    text-align: center;
}

/* Tablet */
@media (max-width: 768px) {
    .date-display {
        font-size: 56px;
        letter-spacing: 3px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .date-display {
        font-size: 42px;
        letter-spacing: 2px;
    }
}
