* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: "Poppings", sans-serif;
    overflow-x: hidden;
    position: relative;
}

:root {
    --main-color: #ff0101;
    --secondary-color: #fff600;
}

section {
    padding: 5%;
}

.call {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
}

.call a {
    color: white;
    text-decoration: none;
}


nav {
    display: flex;
    align-items: center;
    justify-content: end; 
    padding: 5%;
}

.nav-all {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav svg {
    cursor: pointer;
    z-index: 10;
}

.links  {
    position: absolute;
    background: black;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    transform: translateX(100%);
}

.links a {
    color: white;
    font-size: 2rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 8rem;
}

#logo h1 {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.front-page {
    min-height: 100vh;
    background-color: var(--main-color);
}

.selling-info {
    display: flex;
    flex-direction: column;
    align-items: center;

}

.selling-info img  {
    width: 130%;
}

.selling-info h1 {
    color: var(--secondary-color);
    font-size: 2rem;
}

.menu {
    min-height: 100vh;
    background-color: var(--secondary-color);
}


.menu h1 {
    color: var(--main-color);
    font-size: 3rem;
    padding: 1rem;

}

.menu-item {
    padding: 1rem;
    border: solid red;
    margin: 1rem 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .25);
}

.menu-item h2 {
    color: var(--main-color);
    font-size: 2rem;
    padding-top: 1rem;
}

.menu-item h3 {
    color: black;
    font-size: 1.5rem;
    padding: .5rem 0;
}

.menu-item h4 {
    color: black;
}

.location {
    min-height: 100vh;
    background-color: black;
    color: white;
    justify-content: center;
    align-items: center;
}

.location h1 {
    font-size: 3rem;
    padding: 1rem;

}

.location h2 {
    font-size: 2rem;
    padding-top: 1rem;
    padding-left: 1rem;
}

.location h3 {
    font-size: 1rem;
    padding: .5rem 1rem;
}

.address {
    padding: 2rem 0;
}
.map {
    display: flex;
    padding: 2rem 0;
    align-items: center;
    justify-content: center;
}

iframe {
    display: block;
}

.footer {
    min-height: 5vh;
    background-color: black;
    color: white;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer a {
    color: white;
    text-decoration: none;
}