#container {
    display: flex;
    flex-direction: column;
    min-height: 97vh;
}

body a {
    font-family: arial;
    font-size: 14px;
    color: #444;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

p {
    font-family: arial;
}

nav {
    height: 35px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 5px;
    /* border: 1px #333 solid; */
}

.nav-item {
    margin: auto 10px auto 10px;
    /* border: 1px #222 solid; */
}

#apps {
    height: 25px;
    width: auto;
}

#profile-pic {
    height: 35px;
    width: auto;
}

.circle{
    background-color: blue;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    margin: auto;
}

#google-logo {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

#search-box {
    border: 1px #CCC solid;
    height: 2.5em;
    border-radius: 3em;
    max-width: 600px;
    display: flex;
    align-items: center;
    margin: auto;
    margin-top: 40px;
    margin-bottom: 40px;
}

#search-box:hover {
    box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.2);
}

#search-box img {
    height: 50%;
    width: auto;
    margin: 10px;
}

#search-query {
    flex-grow: 2;
    height: 60%;
    border-color: transparent;
}

#search-query:focus {
    outline: none !important;
}

.btn {
    font-size: 14px;
    background-color: #f8f9fa;
    padding: 0.7em 1em 0.7em 1em;
    border: 1px transparent solid;
    border-radius: 5px;
    margin: 5px;
}

.btn:hover {
    border: 1px #d8d9d0 solid;
}

.btn:focus {
    border: 1px blue solid;
}

#btn-flex {
    display: flex;
    justify-content: center;
}

main p {
    font-size: 12px;
    text-align: center;
}

footer {
    margin-top: auto;
    background-color: #f8f9fa;
    display: flex;
    justify-content: space-between;
}
#footer-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

footer a {
    color: gray;
    margin: 12px;
}

#footer-left {
    display: flex;
    align-items: center;
    justify-content: center;
}