html{
    height: 100%;}
/*                   HEADER                   */
header{
    background-image:linear-gradient(to right, rgb(0, 106, 226),rgb(132, 1, 255));
    height: 50px;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
header form{
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between; 
}
header form .input:hover{
    position: relative;
  display: inline-block;
    background-color:  rgb(0, 114, 245);}
header .input{  
    color: white;
    background-color: rgb(0, 106, 226, 0);
    text-align: center;
    height: 100%;
    padding-left: 30px;
    padding-right: 30px;
    margin-right: 50px;
    border-style: none;
} 
header .menu{
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    flex-grow: 1;}
/*                   BODY                   */
body{
    display: flex;
    flex-direction: column;
    min-height: 100%;
    margin: 0;}
.content, .content li{
    margin-left: auto;
    margin-right: auto;
    width: 70%;
    height: 100%;
    list-style-type: none;}
.content li{
    padding: 10px 0 10px 10px;
    border-left: 6px solid;
    border-color: #2196F3!important;
    background-color: #ddffff!important;
}
.content a{
    color:black;
    list-style-type: none;
    text-decoration: none;}
.content li:hover{
    background-image:linear-gradient(to right, rgb(0, 106, 226, 0.2),rgb(132, 1, 255, 0.2));
}
@media screen and (max-width: 600px){
    header{ 
        align-items: center;
        flex-wrap: nowrap;
        justify-content: flex-start;
        }} 
/*                   FOOTER                   */
footer{

    background-image: linear-gradient(to right,rgb(132, 1, 255), rgb(0, 106, 226));
    min-height: 25px;
    margin-top: auto;}
/*                   LOGIN                   */
.login{
    width: 300px;
    height: 300px;
    border-radius: 30px;
    background-image: linear-gradient(to right, rgba(132, 1, 255, 0.2),rgb(0, 106, 226, 0.6), rgba(132, 1, 255, 0.2));
}
.backlogin{
    width: 100vw;
    height: 100vh;
    background-image: linear-gradient(to right,rgb(132, 1, 255), rgb(0, 106, 226),rgb(132, 1, 255));
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center
}