body {
    /*background: whitesmoke;*/
    /*font-family: 'Questrial', sans-serif;*/
    font-family: 'Nunito', sans-serif;


}
*{
    color: #5a5a5a;
    /*font-family: 'Nunito', sans-serif;*/
    /*font-family: 'Questrial', sans-serif;*/
}
a{
    text-decoration: none;
}
#pageHeader{
    text-align: center;
    font-size: 6em;
    color: #526ce1;
    padding: 7%;
    font-family: 'Nunito', sans-serif;

    font-weight: bold;
}
.downloadIcon{
    width: 80px;

    opacity: 0.3;
}
#downloadIcon{
    display: block;
    right: 40px;
    top: 30px;
    position: absolute;
}
#downloadIconResponsive{
    display: none;
    text-align: center;
}

form{
    width: 100%;
    margin-top: 4vh;
}
.input{
    border: 1px solid #dbdbdb;
    font-family: 'Questrial', sans-serif;
    font-size: 1.3em;
    outline: none;
    text-align: center;


}
#linkInput{
    width: 70%;
    padding: 10px 20px;
    border-radius: 999px;
    display: block;
    box-sizing: border-box; /*avoid that border and padding are taken from with and its more than 100%*/
    margin: 0 auto;
}

.input::placeholder{
    color: #c1c1c1;
}
.input:hover{
    border: 1px solid #aeaeae;
}
.input:hover::placeholder{
    color: #a2a2a2;
}

.input:focus{
    border: 1px solid #9e9e9e;
    box-shadow: 0 0 20px #eaeaea;
}

.allSilenceInputDiv{
    margin: 5vh auto;
    width: 50%;
    text-align: center;
}
.silenceDiv{
    display: inline-block;
    width: 49%;
}
.silenceInput{
    margin: auto;
    display: block;
    padding: 5px;
    width: 50px;
    border-radius: 15px;
    -moz-appearance:textfield;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

/* CHECKBOX*/
.testFieldDiv{
    margin: auto;
    width: 30%;
    text-align: center;
}

#testInput{
    display: block;
    margin: auto;
    padding: 10px;
}
.label{
    display: block;
}

label input {
    visibility: hidden;/* <-- Hide the default checkbox. The rest is to hide and allow tabbing, which display:none prevents */
    display: block;
    height: 0;
    width: 0;
    position: absolute;
    overflow: hidden;
}
label span {/* <-- Style the artificial checkbox */
    height: 30px;
    width: 30px;
    border: 1px solid #b5b5b5;
    border-radius: 10px;

    display: inline-block;
}
[type=checkbox]:checked + span {/* <-- Style its checked state */
    background: #526ce1;
    border: 1px solid #526ce1;

}

#submitBtn{
margin: 5vh auto ;
    background: white;
    border-radius: 999px;
    padding: 5px 35px;
    display: block;
    border: 3px solid #526ce1;
    outline: none;

}
#submitBtn:hover {
    background: #526ce1;
    color: white;
}


/* For time and results*/
.infoP{
    width: 100%;
    padding: 15px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    box-sizing: border-box; /*avoid that border and padding are taken from with and its more than 100%*/

}

#overlay{
    width: 100%;
    height: 100%;
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: rgba(255, 255, 255,0.8);
}

#loaderText{
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%,-50%);
    text-align: center;
}

/*Footer*/

.site-footer {
    font-size: 0.9em;
    height: 30px;

    /*background: #f6f9fc;*/
}


.footerContent{
    margin-top: 17px;
    font-family: 'Nunito', sans-serif;

}

.site-footer .fa-heart {
    font-size: 0.8em;
    margin-left: 1px;
    margin-right: 2px;
}

.site-footer .fa-github-alt {
    color: grey;
    font-size: 1.2em;
}

@media (max-width: 840px) {
    #downloadIcon{
        display: none;
    }
    #downloadIconResponsive{
        display: block;
        position: relative;
        margin:auto;
    }
}

@media (max-width: 576px){
    .site-footer{
        /*background: white;*/
        /*display: none;*/
    }

    #pageHeader{
        font-size: 3em;
    }
    #linkInput{
        width: 95%;
        padding: 5px 10px;
    }
    .allSilenceInputDiv{
        width: 95%;
        margin-top: 2vh;
    }
    .silenceDiv{
        width: 100%;
        margin-top: 4vh;
    }
    .testFieldDiv{
        width: 95%;
    }
    .scrollableVoid{
        padding: 5vh;
    }


}
