@font-face {
  font-family: Mirra;
  src: url(Mirra.otf);
}

@font-face {
  font-family: "MyLyon";
  
  src: url(LyonRegular.ttf) format('truetype');
  
}



body{
background-color: #f3eee7;
  min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: MyLyon;
}

h1{
font-size: 8em;
font-family: Mirra;
}

h2 {
 
  font-weight: 400;
}

h3{

  color: #716c6c;
}

.myButtonClass {
  padding: 8px 20px;
}


.sidebar{
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #fff;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  opacity: 0.9;
}

.sidebar .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.sidebar a {
  padding: 32px 8px 8px 32px;
  text-decoration: none;
  font-size: 15px;
  color: #000;
  display: block;
  transition: 0.3s;
}

.menuUL{
  list-style: none;
}

.menuUL p {
  margin: 0;
  font-size: 20px;
}

.menuUL p a {
  color: black;
}

.myInputForm {
padding: 3% 35%;

}

    /* Styles specifically for screens up to 768px wide (mobile) */
    @media (max-width: 768px) {
        .myInputForm {
        padding: 5% 25%;
        }

    
    }