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

body{
    font-family: 'Red Hat Text', sans-serif;
    background-color: hsl(235, 16%, 14%);
}
.socials{
    position: absolute;
    bottom: 30px;
    z-index: 999;
    left: 50%;
    transform: translate(-50%);
}
.socials ul{
    display: flex;
}
.socials ul li{
    margin: 0 20px;
}

img{
    max-width: 100%;
}
.stars{
    position: absolute;
}
.hills{
    position: absolute;
    bottom: 0;
}

ul{
    list-style-type: none;
}

.container{
    display: flex;
    /* flex-wrap: wrap; */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
}
.container h1{
    color: whitesmoke;
    font-size: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 50px;
    text-align: center;
}

.attribution{
    font-size: 12px;
    text-align: center;
    color: whitesmoke;
}
.attribution a{
    color: white;
}
@media (max-width: 500px){
    .container{
        max-width: auto;
        padding: 0 15px;
    }
}

@media (min-width: 1440px){
    stars img, hills img{
        width: 1600px;
    }
}
@media (min-width: 1600px){
    stars img, hills img{
        width: 1920px;
    }
}

.countdown{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    text-align: center;
}
.countdown div{
    margin: 10px;
}
.countdown h3{
    color: hsl(237, 18%, 59%);
    letter-spacing: 2px;
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 10px;
}
.countdown p{
    padding: 20px;
    background-color: hsl(236, 21%, 26%);
    border-radius: 10px;
    color: hsl(345, 95%, 68%);
    font-size: 46px;
}