.contactbody{
    width: 80%;
    margin-left: 20%;
    text-align: right;
}

.contacth1{
    font-size: 80px;
    margin-right: 2%;
    animation: 1s ease-out 0s 1 slideInFromRight;
}

.contacth2{
    font-size: 40px;
    margin-right: 2%;
    animation: 1s ease-out 0s 1 slideInFromRight;
}

.contactp{
    font-family: 'Lora', serif;
    font-size: 25px;
    width: 80%;
    margin-left: 18%;
    animation: 1s ease-out 0s 1 slideInFromRight;
}

.email{
    text-decoration: underline;
}

.cvh1{
    font-size: 80px;
    margin-left: -20%;
    text-align: left;
    animation: 1s ease-out 0s 1 slideInFromLeft;
}
.cvp{
    font-family: 'Lora', serif;
    font-size: 25px;
    width: 80%;
    margin-left: -20%;
    text-align: left;
    animation: 1s ease-out 0s 1 slideInFromLeft;
}

.cvbtn{
    width: 20%;
    height: 50px;
    text-align: center;
    font-family: 'Yeseva One', serif;
    font-size: 20px;
    margin-left: 10%;
    background-color: #BECABA;
    border: 0;
    box-shadow: 2px 2px 2px 2px rgb(0 0 0 / 10%);
    border-radius: 50px;
    animation: 1s ease-out 0s 1 slideInFromLeftNew;
}

.cvbtn a{
    color: black;
    text-decoration: none;
}

@keyframes slideInFromLeftNew {
    0% {
      transform: translateX(-300%);
    }
    100% {
      transform: translateX(0);
    }
  }

@keyframes slideInFromRight {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(0);
    }
  }

  .overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #768372;
    overflow-x: hidden;
    transition: 0.5s;
    box-shadow: 2px 2px 2px 2px rgb(0 0 0 / 10%);
  }
  
  .overlay-content {
    position: relative;
    top: 10%;
    width: 100%;
    margin-left: 5%;
    text-align: left;
    padding-top: 50px;
    font-family: 'Yeseva One', serif;
    font-size: 80px;
  }
  
  .overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 40px;
    color: #FBFBFB;
    display: block;
    transition: 0.3s;
  }
  
  .overlay a:hover, .overlay a:focus {
    color: #BECABA;
  }
  
  .overlay .closebtn{
    position: absolute;
    top: 20px;
    right: 45px;
    border: 0;
  }
  
  .closebtn {
    background-color: #768372;
    color: #FBFBFB;
    font-size: 80px;
    z-index: 1;
  }
  
  .closebtn:hover {
    color: #BECABA;
  }
  
  .openbtn{
    color: #BECABA;
    font-size: 80px;
    position: absolute;
    margin-top: -50px;
    margin-left: 5px;
  }
  .nav-open {
    width: 20%;
  }

  @media screen and (max-width: 800px) {
    .contacth1{
      font-size: 40px;
      margin-right: 2%;
  }
    .contacth2{
      font-size: 35px;
      margin-right: 2%;
  }
    .contactp{
      font-size: 20px;
  }
    .cvh1{
      font-size: 40px;
      margin-left: -20%;
  }
    .cvp{
        font-size: 20px;
    }
    .cvbtn{
      width: 50%;
  }
  .openbtn{
    margin-top: -20px;
  }
  .nav-open {
    width: 100%;
  }
  }
