@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;400;600&display=swap');

.bg {
    animation:slide 3s ease-in-out infinite alternate;
    background-image: linear-gradient(-60deg, #00660E 50%, #009915 50%);
    bottom:0;
    left:-50%;
    opacity:.5;
    position:fixed;
    right:-50%;
    top:0;
    z-index:-1;
}

.bg2 {
    animation-direction:alternate-reverse;
    animation-duration:4s;
}

.bg3 {
    animation-duration:5s;
}
@keyframes slide {
    0% {
        transform:translateX(-25%);
    }
    100% {
        transform:translateX(25%);
    }
}

body {
    font-family: 'Montserrat', sans-serif;
    color: black;
}

h1 {
    font-size: 3rem;
}

.countdown-container {
    display: flex;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
}

.big-text {
    font-size: 5rem;
    line-height: 1;
    margin: 0 2rem;
    font-weight: bold;
}

.countdown-el {
    text-align: center;
    background-color: rgba(255,255,255,0.3);
    margin: 10px;
    padding: 10px;
    border-radius: 15px;
}

.days-c {
    width: 100%;
}
.hours-c {
    width: 100%;
}
.minutes-c {
    width: 100%;
}
.seconds-c {
    min-width: 200px;
}
.boxes {
    background-color: rgba(255,255,255,0.3);
    border-radius: 15px;
    padding: 25px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.grey-bg {
    background-color: rgba(255,255,255,0.7);
    border-radius: 15px;
}