:root{
    --red:crimson;
    --green: #53Bf9D;
    --yellow: #FFC59D;
    --white: whitesmoke;
}
body,h2{
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}
.landing{
    background-image: url('./images/chilly.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
}
.contact{
    color: var(--white);
} 
nav>a{
    color: var(--yellow);
    flex: 1;
    text-decoration: none;
    min-width: 120px;
}
header{
    display: flex;
    padding: 1em;
    flex-wrap: wrap;
    row-gap: 1em;
}
#logo{
    flex:3;
    font-size: 1.25em;
    color: var(--yellow);
    text-decoration: none;
    min-width: 220px;
}
nav{
    flex: 2;
    display: flex;
    align-items: center;
}
nav>a:hover{
    color: var(--green);
}
.details{
    display: flex;
    flex-direction: column;
    height: 50vh;
    justify-content:center ;
    padding: 2em;
}
.tag_one{
    color: var(--red);
    font-size: 2.5em;
    font-weight: bolder;
}
.tag_two{
    color:var(--yellow)
}
.details div{
    margin-top: .75em;
}
.details>button{
    width: 20vw;
    border-radius: 5px;
    margin-top: 2em;
    padding: .7em;
    background-color: var(--green);
    color: var(--white);
}
.menu{
    display: grid;
    background: linear-gradient(to right,rgb(100, 100, 100),rgb(53, 52, 52));
    color: var(--white);
    grid-template-columns: repeat(auto-fit,minmax(310px,1fr))

}
#Menuheaders,#locheading{
    background: linear-gradient(to right,rgb(100, 100, 100),rgb(53, 52, 52));
    color: var(--red);
    display: flex;
    justify-content: center;
}
.menu th{
    color: var(--green);
    font-size: 1.8em;
}
table{
    width: 100%;
    padding:1em;
}
.menu tr{
    display: flex;
    justify-content: center;
    margin-top: .8em;
}
.menu td:nth-child(1){
    justify-self: left;
    flex: 1;
}
.menu td:nth-child(2){
    justify-self: right;
}
.maincourse{
    grid-row: span 2;
}
.locations{
    background: linear-gradient(to right,rgb(100, 100, 100),rgb(53, 52, 52));
    color: var(--white);
    display: flex;
    flex-wrap: wrap;
}
.locations h2{
    color: var(--green);
    margin-bottom: .8em;
}
.locations div{
    flex:1;
    padding:1em;
    min-width: 200px;
}
footer{
    background-color: rgb(55, 55, 55);
    color: var(--white);  
    padding: .25em,1em;  
}
header h2,nav a i {
    margin-right: .5em;
}