header{
    display: grid;
    text-align: center;
    margin:auto;
    /* border:1px solid black; */
    grid-template-columns: repeat(3,1fr);
    padding:30px;
    justify-content: center;
    align-items: center;
    background-color:#FFE01B;
    transition: 0.5s;
    width: 100%;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
#login{
    background-color:#FFE01B;
}
#login:hover{
    background-color: rgb(234, 231, 231);
}
header>button{
    border-radius: 10px;
}
header:hover{
    background-color: white;
    transition: 0.5s;
}
header>div:nth-child(2){
    width: 60%;
    justify-content: center;
    align-items: center;
    margin-left: 50px;
    display: flex;
    gap :15px;
}
header>div:nth-child(2) >img{
    height:40px;
    
}
header>div:first-child{
    justify-content: space-between;
}
header>div:last-child{
    gap: 20px;
}
footer{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    margin: auto;
    background-color: beige;
    /* border-top: 1px solid grey; */
}
footer>div{
    margin: auto;
    margin-top: 50px;
}
a{
    text-decoration: none;
    color: black;
    font-size: 18px;
}
#options{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
}
*{
    font-family: Georgia, 'Times New Roman', Times, serif;
}
a:hover{
    color: teal;
}
h1,h2,h3{
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

button{
    font-size: 18px;
    padding: 20px;
}
form{
    margin: auto;
    display: grid;
    width: 30%;
    font-size: 20px;
    padding: 50px;
    gap: 15px;    
}
#email,#username,#password{
    font-size: 26px;
    margin-bottom: 12px;
    font-family: Arial, Helvetica, sans-serif;
}
input[type="submit"]{
    background-color: teal;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    font-size: 26px;
    transition: 0.25s;
}
input[type="submit"]:hover{
    background-color: white;
    color: teal;
    transition: 0.25s;
    border: 1px solid teal;
}
#email,#username,#password{
    font-size: 26px;
    margin-bottom: 12px;
    font-family: Arial, Helvetica, sans-serif;
}
#SignUp{
    background-color: teal;
    color: white;
    border: none;
    margin-top: 40px;
    margin-left:40px;
    border-radius: 5px;
}
#SignUp:hover{
    background-color: rgb(10, 81, 81);
}
#blank{
    background-color:white;
    height: 70px;
}

@media all and (min-width:481px) and (max-width:721px){
 footer{
    display: grid;
    grid-template-columns: repeat(3,1fr);
 }
}

@media all and (min-width:200px) and (max-width:480px){
    footer{
       display: grid;
       grid-template-columns: repeat(2,1fr);
    }
   }

