

*{
    font-family: poppins;
    scroll-behavior: smooth;
}

html {
    background-color: #FDF5E6;
}

body {
    margin: 1rem;
}


footer{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 2;
}

footer > div{
    grid-row: 1;
    grid-column: 1;
    display: flex;
    align-self: center;
    justify-self: center;
}
footer > div > a {
    padding: 1em;
    text-decoration: underline;
    color: black;
}

footer > p {
    grid-row: 2;
    grid-column: 1;
    display: flex;
    align-self: center;
    justify-self: center;
    color: darkgray;
    text-align: center;
}

@media (max-width: 700px) {
    /* mobile styles */
header {
    display: grid;
    grid-template-rows: 2;
}

header > div {
    display: flex;
    background-color: #FDF5E6;
}

header > div > h1 > a {
    text-decoration: none;
    color: orangered;
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 42px;
}

.hamburger {
    position: absolute;
    top: 1rem;
    right: 0.3rem;
    height: 3rem;
    width: 3rem;
    margin-right: 0.5rem;
    margin-top: 0.5rem;
    cursor: pointer;

}

#menu-toggle {
    display: none;
}

.side-menu {
    display: none;
}

.menu-toggle:checked ~ .side-menu {
    grid-row: 1;
    border-radius: 8px;
    display: block;
    margin-top: 0rem;
    margin-left: auto;
    height: 10rem;
    min-width:25vw;
    align-content: end;
    justify-items: right;
    padding-right: 1rem;
}

#pricing-menu-item {
    display: block;
    padding-bottom: 1rem;
    text-decoration: none;
    color: black;
}

#advert-menu-item {
    display: block;
    padding-bottom: 1rem;
    text-decoration: none;
    color: black;
}

}

@media (min-width: 700px){
    /* desktop styles*/
    header > div {
        display: flex;
        grid-template-columns: repeat(16, 1fr);
        background-color: #FDF5E6;
    }


    .side-menu {
        display: block;
        display: flex;
        align-self: center;
        align-content: center;
        margin-left: auto;
        margin-top: 1rem;
        padding-right: 20px; 
        
    }



    .hamburger {
        display: none;
    }

    #menu-toggle {
        display: none;
    }

    header > div > h1 >a{
        text-decoration: none;
        grid-column: 1 / 4;
        color: orangered;
        /* margin-left: 20px; */
        margin-top: 5px;
        margin-bottom: 5px;
    }

    #pricing-menu-item {
        text-decoration: none;
        color:#222;
    }

    #advert-menu-item {
        margin-left: 30px;
        text-decoration: none;
        color:#222;
    }

}

a >button {
    margin-bottom:0px;
    font-size: 16px;
    padding: 8px;
    background-color: orangered;
    border-radius: 8px;
    border-color: transparent;
    color: white;
    width: 10rem;
    height: 2.5rem;
    border: 0;

    
}
.Restaurant-img {
    width: 60vw;
    height: auto;
    display: flex;
    align-self: center;
    justify-self: center;
}