* {
    margin: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
}

header {
    background: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    height: 60px;
    width: 100%;
}

.gridwrapper {
    display: grid; 
    grid-template-rows: 90vh  ;
}

body {
    background: rgb(0, 0, 0);
    width: 100%;

    min-height:100vh ;
    display: flex;
    flex-direction: column;
}

#nav_links {
    list-style: none;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-evenly;
    font-size: 30px;
    
}

#nav_links:hover {
    color:rgb(94, 93, 93);
    transition: all 0.3s ease-out;
}
.logo { 
    width: 50px;
    height: 50px;
}


nav {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 1200px;
}

li > a {
    text-decoration: none;
    font-family: 'Courier New', Courier, monospace;
    font-size: 30px;
    font-weight: bold;
    color: black;
}

.banner {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 80%; }

.footer_container{  
    height: 100px;
    background-color: rgb(255, 255, 255);
    padding-bottom: 30px;
    margin-top: auto;

}
.footer {
    background-color: white;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    margin-right: 0;
    margin-left: 0;
    font-family: 'Times New Roman', Times, serif;
    margin-top: 0.5rem;
} 

.footer-heading {
    display: flex;
    flex-direction: column;
}

.footer-heading h2 {
   margin-bottom: 0.5rem; 
}

.footer-heading a {
    color: black ;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: all 0.2s ease-out;
}

.footer-heading a:hover {
    color: rgb(94, 93, 93)
}

.footer-email-form h2 {
    margin-bottom: 1rem;   
}

#footer-email {
    width: 200px;
    height: 40px;
    border-radius: 4px;
    outline: none;
    border: none;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: rgb(0, 0, 0);
}

#footer-email::placeholder {
    color: black;
}

#footer-email-button {
width: 100px;
height: 40px;
border-radius: 4px;
background-color: rgb(0, 0, 0);
color: rgb(255, 255, 255);
font-family: 'Times New Roman', Times, serif;
}

#footer-email-button:hover {
cursor: pointer;
background-color:rgb(94, 93, 93);
transition: all 0.3s ease-out;
}

#headline-mainpage {
color: white;
position: absolute;
top: 100px;
left: 30px;
background-color: transparent;
font-size: 89px;
font-family: 'Times New Roman', Times, serif;
}

#subheadline-mainpage {
color: white;
position: absolute;
top: 190px;
left: 30px;
}

.homepage-quote {
    width: 200px;
    color: white;
}

.qoute {
 color: white;
 width: 500px;
 font-size: 40px;
 position: absolute;
 top: 700px;
 left: 60%;
}
.about-us-section-1 p {
    color: white;
    font-size: 21px;
    position: relative;
    bottom: 2400px;
    width: 700px;
    left: 1300px;
    padding-bottom: 1rem;
}
.about-us-section-1 h1 {
    color: white;
    font-size: 55px;
    position: relative;
    bottom: 2400px;
    width: 700px;
    left: 1300px;
    padding-bottom: 00.5rem;
}

.about-us-section-2 p {
    color: white;
    font-size: 21px;
    position: relative;
    bottom: 2320px;
    width: 700px;
    left: 1500px;
    padding-bottom: 1rem;

}
.about-us-section-2 h1 {
    color: white;
    font-size: 55px;
    position: relative;
    bottom: 2320px;
    width: 700px;
    left: 1500px;
    padding-bottom: 00.5rem;
}
.about-us-section-3 p {
    color: white;
    font-size: 21px;
    position: relative;
    bottom: 2220px;
    width: 700px;
    left: 1550px;
    padding-bottom: 1rem;

}
.about-us-section-3 h1 {
    color: white;
    font-size: 55px;
    position: relative;
    bottom: 2220px;
    width: 700px;
    left: 1550px;
    padding-bottom: 00.5rem;
}
.about-us-section-4 p {
    color: white;
    font-size: 21px;
    position: relative;
    bottom: 2120px;
    width: 700px;
    left: 1480px;
    padding-bottom: 1rem;

}
.about-us-section-4 h1 {
    color: white;
    font-size: 55px;
    position: relative;
    bottom: 2120px;
    width: 700px;
    left: 1480px;
    padding-bottom: 00.5rem;
}
.about-us-title {
    color: white;
    font-size: 89px;
    position: relative;
    top: 200px;
    width: 700px;
    left: 1000px;
    padding-bottom: 00.5rem;
}

#menu-main-title {
    color: white;
    font-size: 55px;
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    color: white;
}

.menu {
    font-size: 16px;
}

.menu-heading {
margin: 0;
padding-bottom: 0.5em;
border-bottom: 1px solid rgb(94, 93, 93);
}

.menu-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr) ;
    gap: 1.5rem;
    padding: 1.5em 0 ;
}

.menu-item {
    display: flex;
}
.menu-item-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    object-fit: cover;
    margin-right: 1.5em;
}

.menu-item-text {
    flex-grow: 1;
}

.menu-item-heading {
    display: flex;
    justify-content: space-between;
    margin: 0;
}

.menu-item-name {
    margin-right: 1.5em;
}

.menu-item-description {
    line-height: 1.2;
}

.text {
 color: white;
}