*{
    margin:0;
    box-sizing: border-box;
}
#title{
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    height: 500px;
    font-size: 15vw;
    background-color: rgba(255, 0, 0, 0.5);
    color: white;
}
body{
    text-align: center;
    background-color: gray;
    background-image: url(./images0.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    overflow-x: hidden;
}

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: 20px;
    right: 20px;
    padding: 10px 10px;
    font-size: 20px;
    background-color: hsla(4, 88%, 47%, 0.8);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

#totop:hover{
    background-color: hsl(4, 88%, 47%);
}

#totop:hover #Arrow{
    height: 50px;
}

.context1 div{
    display: inline;
}

.context1 p{
    padding: 50px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 0px solid rgba(255, 255, 255, 0.5);
    display: inline-block;
    margin-left: 20px;
    margin-right: 20px;
    color: rgb(0, 0, 0);
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 20px;
    width: 50vw;
    margin-bottom: 10px;
}

.context1 img{
    width: 500px;
    margin-bottom: 10px;
    margin: 10px;
}

#p1{
    float:left;
    margin-left: -10px;
    padding-left: -10px;
}
#p2{
    float:right;
    margin-right: -10px;
    padding-right: -10px;   
}
#p3{
    float:left;
    margin-left: -10px;
    padding-left: -10px;
}
#p4{
    float:right;
    margin-right: -10px;
    padding-right: -10px;
}
#p5{
    float:left;
    margin-left: -10px;
    padding-left: -10px;
}

#predict{
    display:inline-block;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.5);
}

.predict h1{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 10vw;
    color: rgba(255, 0, 0, 0.76);
}

.predict h3{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 50px;
}

.predict a{
    vertical-align: middle;
    display: inline-block;
    margin: auto;
    height: 50px;
    width: 250px;
    text-decoration: none;
    padding: 0px;
    margin: 10px;
    font-size: 30px;
    border: 2px solid hsla(59, 98%, 83%, 0.75);
    border-radius: 5px;
    background-color: hsla(59, 98%, 83%, 0.75);
    text-align: center;
    overflow: hidden;
    vertical-align: middle;
    color:black;
    line-height: 1.5;
    box-shadow: 1px 1px 1px rgb(46, 46, 46);
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.predict a:hover{
    width:1.2;
    background-color: hsla(59, 98%, 83%);
    box-shadow: 3px 3px 3px black;
}

footer{
    display: block;
    height: 200px;
    width: 100vw;
    background-color: gray;
}

#footer{
    text-align: left;
    margin-left: 25px;
}

#footer a{
    padding-top: 0px;
    text-decoration: none;
    color: white;
    margin-left: 50px;
    text-align: left;
    font-size: 20px;
}

#footer h3{
    color: white;
}

@media screen and (max-width:800px){
    .context1 p{
        width: 90vw;
        margin-left: auto;
        margin-right: auto;
    }
    .context1 img{
        width: 90vw;
        margin-left: auto;
        margin-right: auto;
    }
    #p1{
        float:unset;
    }
    #p2{
        float:unset;
    }
    #p3{
        float:unset;
    }
    #p4{
        float:unset;
    }
    #p5{
        float:unset;
    }
}

