@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap');

*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: #2C4A64;
}
body {
    background: black;
}
.main{
    height: 100vh;
    background-size: cover !important;
}
.number-holder{
    background-color: #ffffffcc;
}
h1{
    text-align: center;
    font-weight: 400;
    font-size: 60px;
    padding-top: 30px;
    color:white;
}
@supports (-webkit-text-stroke: 1px black) {
    h1 {
        -webkit-text-stroke: 2px black;
        -webkit-text-fill-color: white;
    }
}
.countdown{
    display: flex;
    justify-content: center;
    gap: 20px;
}
.countdown > div{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    box-shadow: 1px 1px 15px rgba(0,0,0,0.25);
    width: 80px;
    height: 80px;
    border-radius: 5px;
}
.number {
    font-weight: 500;
    font-size: 44px;
    color: #000000;
}

div span:last-of-type{
    font-size: 12px;
}

@media screen and (max-width:600px){
    h1{
        font-size: 40px;
    }
    .countdown{
        gap: 10px;
    }
    .countdown > div{
        width: 60px;
        height: 80px;
    }

    .number {
        font-size: 34px;
    }
}

.infoDiv {

    width:60%;
    background-color:#ffffffbb;
    margin-left:20%;
    margin-top:42vh;
    box-shadow: 1px 1px 15px rgba(0,0,0,0.25);
    border-radius: 5px;
    position: absolute;
    top:0;
    padding: 15px;
    text-align: center;
}