
/*Introduction container*/
.container{
   display: flex;
   color: violet;
   position: fixed;
   justify-content: center;
   width: 1380px;





}
/**/
*{
 padding: 0;
 margin: 0;
 text-decoration: none;

}
body{
 font-family: sans-serif;
}
nav{
 height: 80px;
 width: 100%;
 background: #014d4e;
}
label.logo{
 font-size: 15px;
 font-weight: bold;
 color: black;
 padding: 0 100px;
 line-height: 80px;

}
nav ul{
 float: right;
 margin-right: 40px;
}

nav li{
 display: inline-block;
 margin: 0 8px;
 line-height: 80px;
}

nav a{
 color: #DAB04E;
 font-size: 18px;
 text-transform: uppercase;
 border: 1px solid transparent;
 padding: 7px 10px;
 border-radius: 4px;
}
a.active,a:hover{
 border: 1px solid white;
 transition: .5s;
}
 nav #icon{
   color: rgb(0, 255, 115);
   font-size: 30px;
   line-height: 80px;
   float: right;
   margin-right: 40px;
   cursor: pointer;


 }
 @media (max-width:1048){
   label.logo{
     font-size: 32px;
     padding-left: 60px;
   }
   nav ul{
     margin-right: 20px;

   }
   nav a{
     font-size: 17px;

   }
 }
@media (max-width: 909px){
 nav #icon{
   display: block;
 }
 nav ul{
   position: fixed;
   width: 100%;
   height: 100vh;
   background: green;
   top: 80px;
   left:0%;
   text-align: center;
   transition: all .5s;
 }
 nav li{
   display: block;
   margin: 50px 0;
   line-height: 30px;

 }
 nav a{
   font-size: 20px;

 }
 a.active,a:hover{
   border: none;
   color: goldenrod;
 }
}

#main{
  padding-top: 150px;
}
h1{
  color: black;
}
#footer{
 padding-top: 10px;
 background-color: #014d4e;
 position:sticky;
