body {
    margin: 0;
}

nav {
    display: flex;
    justify-content: space-between;
}

ul {
    list-style: none;
    display: inline-flex;
}
img {
    height: 30px;
}
a {
    margin: 5px;
    text-decoration: none;
    font-size: 14px;
    font-family: sans-serif;
    font-weight: 500;
    color: black;
    letter-spacing: .25px;
}
a:hover {
    text-decoration: underline;
}
button {
    background-color: #1a73e8;
    border-radius: 5px;
    color: #ffffff;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
    padding: 4px;
    margin: 5px;
}
.header-nav {
    display: flex;
    align-items: center;
    padding-left: 20px;
    margin-right: 10px;
}
li {
    padding: 0 8px;
}
.sign-in:hover {
    box-shadow: 0 0 10px 0 gainsboro;
    cursor: pointer;
}
.header-img:hover {
    box-shadow: 0 0 10px 0 gainsboro;
    border-radius: 20px;
    cursor: pointer;
}
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3vh;
}
.logo {
    height: 6em;
    padding: 25px;
}
.search-container {
    display: flex;
    justify-content: space-between;
    width: 600px;
    height: 38px;
    border: 1px solid gainsboro;
    border-radius: 20px;
}
.search-container:hover {
    box-shadow: 0 0 10px 0 gainsboro;
}
.search-container > input {
    flex-grow: 1;
    border: none;
    outline: none;
}
.icons {
    display: flex;
    align-items: center;
    padding-top: 5px;
}
.button-container {
    padding: 20px;
    border: none;
}
img:hover {
    cursor: pointer;
}
.button-duo:hover {
    cursor: pointer;
    border: 1px solid gainsboro;
}
.button-duo {
    border-radius: 5px;
    color: black;
    background-color: #f8f9fa;
    border: 1px solid #f8f9fa;
    border-radius: 4px;
    color: #3c4043;
    font-family: Roboto,arial,sans-serif;
    font-size: 14px;
    margin: 11px 4px;
    padding: 0 16px;
    line-height: 27px;
    height: 36px;
    min-width: 54px;
    text-align: center;
}
footer {
    background-color: #f2f2f2;
    position: fixed;
    bottom: 0;
    width: 100vw;
}
.footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
}

#leaf {
    height: 15px;
}
#footer-left {
    display: flex;
    justify-content: center;
    padding-left: 20px;
    align-items: center;
    padding-bottom: 0;
}
#footer-right {
    display: flex;
    justify-content: center;
    margin-right: 20px;
    align-items: center;
    padding-bottom: 0;
}
.links, #footer-note {
    color: #70757a;
}
@media (max-width: 600px) {
    
    #footer-nav {
        flex-direction: column;
    }
    #footer-left {
        justify-content: center;
    }
    #footer-right {
        justify-content: center;
    }
}
#leaf {
    display: inline-flex;
    justify-content: center;
}
