main {
    background-color: lightblue;
}

.main-img {
    background-image: url(../images/cuban-bg.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px;
}

h1 {
    font-size: 90px;
    display: inline;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-weight: 200;
    letter-spacing: 2px;
    padding: 10px;
    background-color: lightblue;
    border-radius: 5px;
    text-align: center;
}

h2 {
    font-size: 30px;
    font-family: 'Readex Pro', sans-serif;
    text-align: center;
    margin: 30px 0px;
}

h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
}

.brunch-section, .dinner-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.item {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #EF9559;
}

.gallery-button-wrapper {
    display: flex;
    justify-content: center;
}

.item > .text, .item > img {
    width: 40vw;
    text-align: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.text > p {
    margin: 10px 10px;
}

.gallery-button-wrapper > a {
    background-color: #EF9559;
    border-radius: 4px;
    text-decoration: none;
    font-size: 40px;
    padding: 8px;
    margin: 12px;
    color: black;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    transition: 0.4s;
}

.gallery-button-wrapper > a:hover {
    background-color: #e97c34;
}