main {
    background-color: lightblue;
}

.main-img {
    background-image: url(../images/fish-shrimp-bg.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    letter-spacing: 2px;
    padding: 100px;
}

.button-container, .menu-dropdown {
    height: 30px;
    margin: 10px;
}

.button-container > a, .menu-dropdown > a {
    font-family: 'Readex Pro', sans-serif;
    text-decoration: none;
    background-color: #EF9559;
    padding: 5px;
    color: black;
    font-size: 16px;
    transition: 0.5s;
    border-radius: 3px;
}

.button-container > a:hover {
    padding: 8px;
    font-size: 18px;
}

.main-img > h1 {
    letter-spacing: 2px;
    color: rgb(240, 240, 240);
    font-weight: 500;
}

.map-section {
    display: flex;
    flex-direction: column;
    align-items: center;    
}

.menu-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-contents {
    display: none;
    position: absolute;
    background-color: #EF9559;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
    padding: 12px 16px;
    z-index: 1;
    margin-top: 5.5px;
    border-radius: 3px;
}

.menu-dropdown:hover .dropdown-contents {
    display: block;
}

.dropdown-contents > a {
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    color: black;
}

.dropdown-contents > a:hover {
    text-decoration: underline;
}

h2 {
    font-family: 'Readex Pro', sans-serif;
    margin: 7px;
}

p {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: justify;
    margin: 10px 20px;
    line-height: 25px;
}

@media screen and (max-width: 400px) {
    .main-img {
        padding: 75px;
    }
}