*{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
#nav{
    display: flex;
    justify-content: space-between;
    height: 40px;
    width: 60%;
    margin: auto;
    margin-bottom: 150px;
}
#left{
    width: 68%;
    display: flex;
    justify-content: space-between;
}
#right{
    width: 30%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
#logo{
    width: 25%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
#pages{
    width: 75%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.pages{
    font-size: 12px;
    font-weight: 400;
    letter-spacing: .5px;
    color: gray;
    width: 20%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pages>a{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: gray;
}
.pages:hover{
    cursor: pointer;
    color: black;
}
.pages>:hover{
    color: black;
}
#left img{
    width: 16px;
}
#right>.pages{
    font-size: 10px;
}
h3{
    letter-spacing: .4px;
    font-size: 16px;
    font-weight: 500;
}
#signup{
    border: .5px solid gray;
    border-radius: 4px;
    width: 25%;
    font-size: 10px;
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#signup>a{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: gray;
}
#signup:hover, #signup>a:hover{
    background-color: #80BB35;
    color: white;
    text-decoration: none;
}
h1{
    text-align: center;
    font-weight: 500;
    color: #10639e;
    font-size: 40px;
}
#form{
    padding-top: 20px;
    padding: 20px 1%;
    width: 20%;
    margin: auto;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}
form{
    width: 90%;
    margin: auto;
}
input{
    width: 95%;
    height: 40px;
    margin-bottom: 30px;
    margin-top: 10px;
}
#submit{
    width: 95%;
    height: 60px;
    font-size: 18px;
    letter-spacing: .5px;
    background-color: #80BB35;
    border: none;
    color: white;
    margin-top: 30px;
    margin-bottom: 10px;
}
#bottom{
    width: 20%;
    margin: auto;
    margin-top: 40px;
    text-align: center;
    padding: 0% 1%;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}
#bottom>h2{
    font-weight: 500;
    margin-bottom: 0px;
}
#bottom>p, #form>p{
    font-size: 15px;
    text-align: center;
    color: gray;
}
.ul:hover{
    color: #10639e;
    text-decoration: underline;
}
.ul>a{
    text-decoration: none;
    color: #10639e;
}