* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* overflow-x: hidden; */
}

html {
    font-size: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
}

header {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

nav img {
    width: 4.5em;
    margin: 1em;
}

#logo {
    transition: 0.4s;
}

#logo:hover {
    transform: rotate(360deg);
    transition: 0.4s;
}


main img {
    height: 90%;
    margin: 2em;
    border-radius: 20px;
    
}

main img:hover {
    transform: scale(1.05);
    transition: 0.4s;
}

#menu-1 {
    background: url("../Assets/BreweryMenu/BeerBreweryBG.jpg") no-repeat center;
}

#menu-2 {
    background: url("../Assets/BrunchMenu/BrunchBG.jpg") no-repeat center;
}

#menu-3 {
    background: url("../Assets/CocktailBarMenu/CocktailBG.jpg") no-repeat center;
}

#menu-4 {
    background: url("../Assets/FineDiningMenu/FineBG.jpg") no-repeat center;
}

#menu-5 {
    background: url("../Assets/HolidayMenu/HolidayBG.jpg") no-repeat center;
}


footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    height: 7em;
    background: #D4F6CC;
}

footer a {
    color: #EF5B0C;
}

footer a:hover {
    color: #1F4690;
}

@media (max-width:660px) {

    *{
        overflow-x: hidden;
    }
    html {
        font-size: 10px;
    }

    header {
        flex-direction: column;
        width: 100%;
        align-items: center;
        justify-content: space-between;

    }

    nav {
        /* border: 2px solid red; */
        display: inline-block;
        width: 100%;
        height: 10%;
    }

    main {
        width: 100%;
    }

    main img {
        width: 100%;
        margin: 0 auto;
        padding: 1em;
    }
    footer{
        width: 100%;
    }
}