*{
    box-sizing: border-box;
}

body{
    text-align: center;
    display: block;
    margin: 0px;
    margin-bottom: 0px;
    background-image: url(./images2.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

header{
    display: block;
    width: vw;
    margin-top: 0px;
}

.navbar{
    display: inline;
    width: 100%;
    height: 59px;
    margin-left: 0px;
    list-style: none;
}

.navbar ul{
    text-decoration: none;
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    font-size: 25px;
    overflow: hidden;
}

.navbar li{
    float: left;
}

.navbar a{
    background-color: hsla(37, 95%, 84%, 0) ;
    color: white;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    padding: 10px;
    font-size: 35px;
}

.navbar a:hover{
    background-color: hsla(0, 0%, 20%, 0.4);
}

#totop{
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 10px 10px;
    font-size: 20px;
    background-color: hsla(182, 11%, 52%, 0.8);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

#totop:hover {
    background-color: hsla(182, 11%, 52%);
}

#totop:hover #Arrow1{
    height: 50px;
}


#reload{
    position: fixed;
    bottom: 30px;
    right: 100px;
    padding: 10px 10px;
    font-size: 20px;
    background-color: hsla(182, 11%, 52%, 0.8);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

#reload:hover {
    background-color: hsla(182, 11%, 52%);
}

#reload:hover #Arrow2{
    height: 50px;
}

main{
    height: 91vh;
}

#title{
    margin-top: 25vh;
    font-size: 75px;
    color: rgb(154,204,183);
    margin-bottom: 0px;
    text-shadow: 1px 1px rgb(16,81,113);
}
#image-container{
    display: block;
    margin-bottom: 20px;
}

#label-container div{
    background-color: rgba(255, 250, 250, 0.85);
    display: inline-block;
    width: 350px;
    height: 50px;
    font-size: 20px;
    text-align: left;
    margin: 5px;
    border-radius: 5px;
    padding: 10px;
}

#buttonTF21{
    position: relative;
    background-color: hsl(200, 75%, 25%, 0.9);
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 25px;
    padding: 10px 20px;
    border: 1px solid hsl(200, 75%, 25%, 0.9);
    border-radius: 5px;
}
#buttonTF21:hover{
    font-size: 30px;
    background-color:hsl(200, 75%, 25%);
    border: 1px solid hsl(200, 75%, 25%);
    box-shadow: 3px 3px 3px black;
}
#buttonTF21:checked{
    border-color: white;
}

footer{
    position: static;
    display: inline-block;
    height: 200px;
    width: 100%;
    background-color: gray;
    vertical-align: bottom;
    bottom: 0;
}

#footerdiv{
    text-align: left;
    margin-left: 25px;
    vertical-align: bottom;
}

#footerdiv a{
    padding-top: 0px;
    text-decoration: none;
    color: white;
    margin-left: 50px;
    text-align: left;
    font-size: 20px;
}

#footerdiv h3{
    color: white;
}
@media screen and (max-width:800px){
    #title{
        margin-top: 15vh;
    }
}

