/* ==================== Fonts ==================== */
@import url('https://fonts.googleapis.com/css2?family=Skillet&display=swap');

body {
    font-family: 'Skillet', sans-serif;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
}

/* Countdown boxes */
#countdown > div {
    background: rgba(117,107,91,0.8);
    color: #fef9f0;
    padding: .75rem 1.25rem;
    border-radius: .5rem;
    min-width: 4rem;
}

/* ==================== Weather week ==================== */
#weather-week {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(5rem, 1fr));
    gap: 1rem;
    max-width: 64rem;
    margin: 0 auto;
}

#weather-week .day {
    background: #ffffff;
    padding: .75rem;
    border-radius: .5rem;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,.1);
}
#weather-week .day time {
    display: block;
    font-weight: bold;
    margin-bottom: .25rem;
}

