:root{
    --lightred:#f35469;
    --white:#fffffc;
    --green:#3ed87e;
    --yellow:rgb(236, 252, 15);
}
body,h2{
    margin: 0;
    font-family:Arial, Helvetica, sans-serif
}

.landing{
    background-image: url('./spice.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    color:var(--white);
}
header a{
    text-decoration: none;
    color:var(--yellow) ;
    min-width: 120px;
}
header{
    display: flex;
    padding: 1em;
    flex-wrap: wrap;
}
#logo{
    font-size: 1.25em;
    flex: 4;
    font-weight: bolder;
    min-width: 220px;
}
nav{
    display: flex;
    flex: 2;
 
    align-items: center;
}
nav a{
    flex: 1;
}
nav a:hover{
    color: var(--green);
}
.maintext{
    display: flex;
    flex-direction: column;
    height: 50vh;
    justify-content: center;
    padding: 2em;

}
.tagline1{
    color: var(--lightred);
    font-size:1.80em;
    font-weight: bolder;
    
}
.tagline2{
    color: var(--yellow);
}
.maintext div{
    margin-top: .75em;
}
button{
    width: 20vw;
    margin-top: .75em;
    border-radius: .5em;
    padding: .50em;
    background-color: var(--green);
    border-color: var(--green);
}
.menu{
    display: grid;
    padding: .75em;
    background: linear-gradient(to left,rgb(255, 234, 234),rgba(248, 248, 24, 0.295));
    grid-template-columns: repeat(auto-fit,minmax(370px,1fr));
}
#menuheading,#locheading{
    display: flex;
    justify-content: center;
    background: linear-gradient(to right,rgba(236, 229, 132, 0.514),rgb(238, 222, 222));
    color: var(--lightred);
    font-size: 2.5em;
}
.menu th{
    color: var(--green);
    font-size: 1.75em;
}
table{
    width: 100%;
    padding: 1em;
}
.menu tr{
    display: flex;
    justify-content: center;
    padding-top: .8em ;
}
.menu td:nth-child(1){
    flex: 1;
    justify-self: left;
}
.menu td:nth-child(2){
    justify-self: right;
}
.maincourse{
    grid-row: span 2;
}
.locations{
    display: flex;
    background: linear-gradient(to left,rgb(255, 234, 234),rgba(248, 248, 24, 0.295));
    flex-wrap: wrap;
}
.locations h2{
    color: var(--green);
    margin-bottom: .50em;
}
.locations div{
    flex: 1;
    padding: 1em;
    min-width: 220px;
}
footer{
    background-color:rgba(65, 55, 55, 0.801);
    color: var(--white);
    padding: .5em 1em;
}
header nav i,a i{
    margin: .5em;
}
/* Just for the pen to look nice */
@import url(https://fonts.googleapis.com/css?family=Open+Sans);

a{
 text-decoration: none;
}
body{
  font-family: 'Open Sans';
}
/* relevant code for the icons starts here */

.site{
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.wrapper{
  display:flex;
  height: 20vh;
  flex-direction: row;
  padding: 0 10px;
  align-items: center;
  justify-content: center;
}



.fab {
margin: auto;

}
.social{
  color: #FFF;
  transition: all 0.35s;
  transition-timing-function: cubic-bezier(0.31, -0.105, 0.43, 1.59);
}
.social:hover {
	text-shadow: 0px 5px 5px rgba(0, 0, 0, 0.3);
	transition: all ease 0.5s;
	-moz-transition: all ease-in 0.5s;
	-webkit-transition: all ease-in 0.5s;
	-o-transition: all ease-in 0.5s;
  
}

.facebook {
 color:#4267B2;
}

.twitter {
color:#1DA1F2;

}
.youtube {
      color:#c4302b;
}
.pinterest {
   color:#c8232c;
}
.instagram {
 color: transparent;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  background: -webkit-radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  background-clip: text;
  -webkit-background-clip: text;

}
.tumblr {
        color: #34526f;
}
.whatsapp {
        color:#25D366;
}

.bg-ico {
  display: flex;
  background-color: #FFF;
  width: 60px;
  height: 60px;
  line-height: 40px;
  margin: 0 5px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 28%;
  box-shadow: 0 5px 15px -5px rgba(0,0,0,0.1);
  opacity: 0.99;
  -webkit-transition: background-color 2s ease-out;
  -moz-transition: background-color 2s ease-out;
  -o-transition: background-color 2s ease-out;
  transition: background-color 2s ease-out;
  
}
.bg-ico:hover{
     box-shadow: 0 5px 15px -5px rgba(0,0,0,0.8);
}

#facebook:hover {
  background-color: #4267B2;
}

#twitter:hover {
background-color: #1DA1F2;

}
#youtube:hover {
      background-color: #c4302b;
}
#pinterest:hover {
   background-color:#c8232c;
}
#instagram:hover {
 background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  background: -webkit-radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  

}
#tumblr:hover {
    background-color: #34526f;
}
#whatsapp:hover {
       background-color:#25D366;
}

.facebook:hover, 
.twitter:hover, 
.youtube:hover, 
.pinterest:hover,
.instagram:hover, 
.tumblr:hover,
.whatsapp:hover {
 color:#fff;
 transform: scale(1.3);

}
