body {
    margin: 0px;
}

.flex-grid {
    display: flex;
}

@media screen and (max-width: 400px) {
    .flex-grid {
        display: block;
    }
}

.col {
  flex: 1;
}

#navbar {
    font-family: "New Caledonia W01";
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 1.2rem;

    background-image: linear-gradient(to bottom, #ffffffff 0%, #ffffff77 80%, #ffffff00 100%);
    padding: 20px 40px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;

    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
}

#navbar #logo {
    height: 72px;
    width: 300px;
    margin: 20px 100px;
}

#navbar nav {
    align-self: center;
    display: flex;
    list-style-type: none;
    margin: 0;
    overflow: hidden;
    padding: 0;
}

#navbar .highlight-btn {
    background: #f75d2c;
    border-radius: 12px;
    color: #ffffff;
}

#navbar nav a {
    color: #524742;
    display: block;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
}

#navbar nav a:hover {
    color: #662b18;
}

#bottombar {
    font-family: "New Caledonia W01";
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 1.2rem;

    margin-top: -47px;
    padding: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to top, #524742ff, #524742cc);

    position: -webkit-sticky; /* Safari */
    position: sticky;
    bottom: 0;
}

#bottombar a {
    color: #ffffff;
    margin-left: 40px;
    text-decoration: none;
}

#bottombar a:hover {
    color: #dddddd;
}

#bottombar .fa-facebook {
    margin: 0px;
    padding: 7px;
    font-size: 15px;
    letter-spacing: 0px;
    width: 15px;
    text-align: center;
    text-decoration: none;
    border-radius: 50%;
    background: #3B5998;
    color: white;
}

#bottombar .fa-yelp {
    margin: 0px 10px;
    padding: 7px;
    font-size: 15px;
    letter-spacing: 0px;
    width: 15px;
    text-align: center;
    text-decoration: none;
    border-radius: 50%;
    background: #d32323;
    color: white;
}

.fa:hover {
    opacity: 0.7;
}