body{
    margin: 0;
    padding-top: 15px;
    display: grid;
    justify-items: center;
}
header{
    width: 100%;
    display: flex;
    align-items: space-around;
    font-family: arial, sans-serif;
    font-size: 10px;
}
header > a{
    padding: 5px 10px;
    color: #5f5f5f;
    text-decoration: none;
}
header > a:hover{
    text-decoration:underline;
}
header > a > i:hover{
    text-decoration: none;
    color: black;
}
#gap{
    flex-grow: 1;
}
i{
    font-size: 20px;
}

main{
    max-width: 481.4px;
    height: 90vh;
    display: grid;
    justify-items: center;
    align-items: center;
}
#center{
    display: grid;
    justify-items: center;
    margin-top: -150px;
}
#search-bar{
    width: 481.5px;
    height: 40px;
    margin-top: 20px;
    border: 1px solid #dfe1e5;
    border-radius: 20px;
}
#search-bar:hover{
    box-shadow: 0 0 3px gray;
}
input{
    width: 430px;
    height: 30px;
    border: none;  
}
#search-bar > i{
    margin-top: 12.5px;
    margin-left: 10px;
    color: #5f5f5f;
    font-size: 15px;
}
#search-buttons{
    display: flex;
    justify-content: center;
    margin-top: 10px;;
}

button{
    position: relative;
    background-color: #f1f1f1;
    border: none;
    border-radius: 4px;
    font-family: arial, sans-serif;
    font-size: 12px;
    margin: 5px 10px;
    padding: 9px 16px;
}
button:hover{
    border: 1px solid #5f5f5f;
}

footer{
    position: relative;
    display: grid;
    justify-items: center;
    width: 100%;
    background-color: #f2f2f2;
    font-family: arial, sans-serif; 
    font-size: 10px;
    padding: 10px 0
}

#footer1, #footer2{
    padding: 6px 0;
}
#footer2{
    flex-wrap: wrap;
    align-self: flex-end;
}

footer > div > a{
    padding: 0 10px;
    text-decoration: none;
    color: #5f5f5f;
}
footer > div > a:hover{
    text-decoration:underline;
}
@media (min-width: 650px){
    footer{
        display: flex;
    }
    #footer-gap{
        flex-grow: 1;
    }
}
}