*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    
}
body{
    height: 100%;
    width: 100%;
}
 
#main{
    height: 100%;
    width: 100%;
    
   
}

#nav-main{
   
    height: 70px;
    width: 100%;
    padding: 0  40px;
    display: flex;
    color: white;
    align-items: center;
    background-color: rgb(9, 144, 127);
    justify-content: space-between;
}

#nav{
    display: flex;
    width: 75%;
    color: #000;
    align-items: center;
    justify-content: space-between;
}
 h5 i{
    margin: 5px;
}

#nav h4{
    font-size: 15px;
    font-weight: 300;
    text-transform: uppercase; 
}
#line{
  width: 70px;
  height: 2px;
  background-color: white;
}

 img{
    height: 150px;  
 }
 #container{
    height: calc(100%-70px);
    width: 100%;
   display: flex;
 }
 #left{ 
    width: 36%;
    height: 676px;
    color: antiquewhite;
    background-color: rgb(0, 0, 0);
    padding: 160px 30px;
 }
 #right{ 
    height: 676px;
    width: 36%;
    background-color: rgb(0, 0, 0);
    padding-top: 20%;
    
    
    
 }
 #center{
   padding: 15px;
   height: 676px;
    width: 28%;
   background-color: #000;
 }
 #center-bg{ 
   margin-top: 12px;
   background-color: #000;
    height: 88%;
    width: 90%;
    background-image: url(StarbucksCoffee_5.jpg);
    background-size: 250%;
    background-position: 45% 30%;
    filter: blur(3px);
    border-top-left-radius: 900px;
    border-top-right-radius: 900px;
 }
 #left h1{
    font-size: 55px;
    line-height: 55px;
    font-weight: 500;
    margin: 20px;
    display: block;
    align-items: center;
 }
  #left span>svg{
   font-weight: 300;
   transform: translate(10px, 10px);
  }
 
 svg path{
   fill: transparent;
   stroke: rgb(9, 144, 127);
   stroke-width: 0.5;
   stroke-dasharray: 230;
   stroke-dashoffset: 230;
   animation: textAnimation 2.5s ease-in-out forwards;
 }
 @keyframes textAnimation {
   0%{
      stroke-dashoffset: 230;
   }
   80%{
     fill: transparent ;
     
   }
   100%{
      stroke-dashoffset: 0;
      fill:  rgb(9, 144, 127);
   }
 }
  #left P{
   color: white;
   margin: 20px;
   font-weight: 10;
  }
 #left #button{
   display: flex;
  align-items: center;

  }
   #left button{
      color: white;
      height: 35px;
      width: 100px;
      padding: 6px;
      margin-top: 30px;
      margin-left: 60px;
      border-radius: 12px;
      background-color: rgb(9, 144, 127);
      border: none;
   }
   #left button>i{
      margin-left: 6px;
      margin-right: 3px;
   }

   #button>i{
      font-size: 25px;
      color: rgb(9, 144, 127);
      margin-left: 100px;
      margin-top: 30px;
   }
   #main>img{
      height: 80%;
      position: absolute;
      transform: translate(90% ,-102%);
   }
   #right #elem-1{
      height: 70px;
      width: 400px;
      display: flex;
      font-size: 12px;
      font-weight: 30;
      opacity: 0.2;
      color: white;
      border-bottom: 2px solid white;
      align-items: center;
      justify-content: space-between;
   }
   #right #elem-2{
      height: 70px;
      width: 400px;
      font-size: 12px;
      font-weight: 30;
      color: white;
   }
    #elem-2 h1{
      padding: 6px;
    }
    #elem-2 p{
      padding: 6px;
      opacity: 0.5;
    }