/* Navigation styles */
.logo {
    background-color: white;
    height: 230px;
    background-image: url("../images/jakes-logo.png");
    background-repeat: no-repeat;
    background-position: center;
}

.nav {
    display: flex;
    background-color: black;
    padding: 20px;
}

.left, .center, .right {
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left, .right {
    width: 25%;
}

.center {
    width: 50%;
}

.center a {
    color: white;
    padding: 10px;
    font-size: 18px;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
}

button {
    color: black;
    font-size: 16px;
    padding: 15px;
    width: 50%;
}

.right button {
    background-color: yellow;
}

.left button {
    background-color: skyblue;
}


/* Column styles */
.column {
    display: flex;
    height: 1200px;
    width: 800px;
    flex-direction: column;
    margin: 0 auto;
}

.meal1, .meal2, .meal3 {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: flex-end;
    margin-bottom: 20px;
    background-repeat: no-repeat;
    background-position: center;
}

.meal1 {
    margin-top: 20px;
    background-image: url(../images/steak.png);
}

.meal2 {
    background-image: url(../images/soup.png);
}

.meal3 {
    background-image: url(../images/cheesecake.png);
}

.text {
    background: rgba(0,0,0, 0.7);
    width: 100%;
    padding: 20px 40px;
    color: white;
}

.text p {
    color: rgba(255, 255, 255, 0.7);
    font-family: Arial, Helvetica, sans-serif;
}

.text h1 {
    font-family: Georgia, 'Times New Roman', Times, serif;
}

/* Footer Styles */

.footer {
    background-color: black;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.footer a {
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    padding: 20px;
}

.fb {
color: skyblue;
}

.tw {
color: yellow;
}

.ig {
color: red;
}