body{
    margin:0;
    font-family: 'Roboto', sans-serif;
    background-image:url('../images/background-white.jpg');
    background-size: cover;
    background-attachment: fixed;
}

#main{
    height: 65%;
    display: flex;
    justify-content: space-around;
    padding: 7% 0%;
}

#box{
    padding: 5% 25% 10%;
    
}

#form{
    border-radius: 50px;
    width: 30%;
    background-color: rgb(255, 255, 255);
    
}

error{
    color:red;
    font-weight: bold;
}

h1{
    text-align: center;
    font-size: 30px;
    font-weight: bold
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
  }
  
li {
    float: left;
}
  
li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
  
li a:hover:not(.active) {
    background-color: #111;
}
  
.active {
    background-color: #ffd900;
    color:black;
}