* {
    font-family: "Poppins", serif;
    box-sizing: border-box;
}

body {
    font-size: 18px;
    line-height: 150%;
    margin: 0;
    padding: 0;
    top: 0;
    height: 100%;
    color: white;
    text-align: center;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

.content {
    height: calc(100vh - 50px);
    display: flex;
    justify-content: center;
}

.hidden .content{
    height: 100vh;
}

.footer {
    height: 50px;
    border-top: 1px solid rgb(255,255,255,.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.hidden .footer{
    display: none;
}

#time {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#time.without-days .box_number:first-of-type{
    display: none;
}

.time-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.date-to-text {
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}

.box_number {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 0;
}

.number_text {
    font-size: 3vh;
    font-weight: bold;
    text-align: left;
}

.box_number_number {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.number{
    color: black;
    border-radius: 1vh;
    -moz-box-shadow: 0px 3px 15px 1px rgba(64,64,64, 0.7);
    -webkit-box-shadow: 0px 3px 15px 1px rgba(64,64,64, 0.4);
    box-shadow: 0px 3px 15px 1px rgba(64,64,64, 0.4);
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2vh;
    height: calc((100vh - 100px) / 4 - 20px);
    width: calc(((100vh - 100px) / 4 - 20px) / 2);
    font-size: calc(((100vh - 100px) / 4 - 20px) / 2);
}

form{
    font-size: 3vh;
}

.form {
    margin-top: 30px;
}

button{
    font-size: 3vh;
    text-decoration: none;
    padding: 2vh;
    color: black;
    background-color: rgb(240,240,240);
    border: none;
    border-radius: 3px;
    -moz-box-shadow: 0px 3px 15px 1px rgba(64,64,64, 0.7);
    -webkit-box-shadow: 0px 3px 15px 1px rgba(64,64,64, 0.4);
    box-shadow: 0px 3px 15px 1px rgba(64,64,64, 0.4);
    font-weight: bold
}

button:hover{
    background-color: rgb(221,221,221);
}

input, select{
    border: none;
    font-size: 3vh;
    padding: 2vh;
    border-radius: 3px;
    margin: 0.2vh;
    -moz-box-shadow: 0px 3px 15px 1px rgba(64,64,64, 0.7);
    -webkit-box-shadow: 0px 3px 15px 1px rgba(64,64,64, 0.4);
    box-shadow: 0px 3px 15px 1px rgba(64,64,64, 0.4);
    background-color: white;
    margin-bottom: 2vh;
}

.close_button{
    float:right;
}

a{
    color: white;
    text-decoration: none;
}

a:hover{
    text-decoration: underline;
}

@media screen and (orientation: landscape) {
    .time-content {
        flex-direction: row;
    }

    .box_number {
        flex-direction: column;
        align-items: center;
        width: 25vw;
        padding: 30px;
    }

    .number {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 0;
        height: calc((25vw - 60px - 20px) / 1.5);
        width: calc((25vw - 60px - 20px) / 2);
        font-size: calc((25vw - 60px - 20px) / 3);
    }

    .number_text {
        font-size: 3vw;
    }

    .number:first-of-type {
        margin-right: 20px;
    }

    .date-to-text {
        font-size: 1.5vw;
    }

    #time.without-days .box_number{
        width: 33vw;
    }

    #time.without-days .number{
        height: calc((33vw - 60px - 20px) / 1.5);
        width: calc((33vw - 60px - 20px) / 2);
        font-size: calc((33vw - 60px - 20px) / 3);
    }
}