* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    font-family: 'Futura', 'Trebuchet MS', 'Arial', sans-serif;
    text-align: center;
    line-height: 1.5;
}
body {
    background-image: url('../images/background-image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.black-text {
    color: black;
}
.off-screen-menu {
    background-color: #a6776a;
    height: 100vh;
    width: 100%;
    max-width: 450px;
    position: fixed;
    top: 0px;
    right: -450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 2rem;
    transition: .3s ease;
    z-index: 2;
}
.off-screen-menu a {
    color: black;
}

.off-screen-menu.active {
    right: 0;
}

.logo, .logo img{
    width: 6rem;
}

.large-screen-menu {
    display: none;
}

nav {
    padding: 1rem;
    display: flex;
    background-color: #eee4db;
    justify-content: space-between;
    font-weight: 100;
    font-size:medium;
    align-items: center;
}

#formally {
    font-size: 10px;
}

.book-button {
    width: 80px;
    height: 40px;
    margin-top: 2em;
}

.book-button a{
    color: black;
}

.ham-menu {
    height: 50px;
    width: 30px;
    position: relative;
    z-index: 2;
}
.ham-menu span {
    height: 3px;
    width: 100%;
    background-color: black;
    border-radius: 25px;
    position:absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .3s ease;
}
.ham-menu span:nth-child(1) {
    top: 25%;
}
.ham-menu span:nth-child(3) {
    top:75%;
}

.ham-menu.active span:nth-child(1){
    top:50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.ham-menu.active span:nth-child(2){
    opacity: 0;
}
.ham-menu.active span:nth-child(3){
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.full-nav ul a:hover {
    background-color: #a6776a98;
    padding: 2px 5px;
    border-radius: 5px;

}


/* body {
    background-color: #eee4db;
} */


.footer {
    position: relative;
    height: 5em;
    margin-bottom: 8em;
    z-index: 1;
}

.footer a {
    color: black;
    text-decoration: underline;
}

.footer h2 {
    margin-bottom: 1em;
}

@media only screen and (min-width: 800px) {
    .book-button {
        display: none;
    }
    .ham-menu {
        display: none;
    }
    .large-screen-menu {
        display: block;
        width: 600px;
    }
    .large-screen-menu ul {
        display: flex;
        justify-content: space-around;
    }
    .large-screen-menu ul li{
        display: flex;
    }
    a {
        color: black;
        font-weight: 100;
    }
    nav {
        margin: 0em 4em;
        align-items: center;
    }
    .logo, .logo img{
        width: 15rem;
    }
    #formally {
        font-size: 20px;
    }
}