*{
    margin: 0;
    padding: 0;
}

body{
    background-color: black;
    font-family: 'Inria Serif', serif;
    overflow: hidden;
}

.main-text{
    position: absolute;
    bottom: 25vh;
    text-align: center;
}

.main-text ul li{
  color: #B4A9AD;
}

.main-text ul{
  list-style: none;
}


.main-text ul li a{
  color: #C67C38;
  text-decoration: none;
}



/* Demo purposes only */
html {
  height: 100%;
}
body {
  background-color: #212121;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  height: 100%;
  overflow: hidden;
}
.fade-in {
    animation: fadeIn ease 3s;
    -webkit-animation: fadeIn ease 3s;
    -moz-animation: fadeIn ease 3s;
    -o-animation: fadeIn ease 3s;
    -ms-animation: fadeIn ease 3s;
  }
  @keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
  }
  
  @-moz-keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
  }
  
  @-webkit-keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
  }
  
  @-o-keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
  }
  
  @-ms-keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
  }}

.fig-container{
  display: flex;
}

  @media screen and (max-width: 800px) {
    body{
      overflow: hidden;
    }
    .nav{
      width: 350px;
      top: 120px;
  }


  #line{
    width: 85%;
    position: absolute;
    top: 100px;
    background-color: #B7B2BD;
    height: 3px;
    border-radius: 5px;
  }

  #burgpng{
    width: 150px;
    position: absolute;
    top: 0;
    text-align: center;
}
  
  .nav li{
      margin: 5px;
  }


  .main-text{
    position: absolute;
    bottom: 13vh;
}

  }
