@font-face {
  font-family: 'Crimson Text';
  font-style: normal;
  font-weight: 400;
  src: url('https://fonts.googleapis.com/css2?family=Crimson+Text&display=swap') format('woff2');
}

header {
  /* background-color: #f7f5eda8; */
  background-color: rgba(241, 193, 130, 0.58);
  height: fit-content;
  margin-bottom: 2rem;
  text-align: center;
  padding: 1rem 3rem 1rem 3rem;
  font-family: 'Crimson Text', serif;
}

@media (max-width: 767px) {
  header {
    box-sizing: border-box;
    padding: 1rem .5rem 1rem .5rem;
    text-align: inherit;
  }
}

hr {
  margin: 0;
  border: 0;
  height: 1px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

header h1 {
  margin: 0;
  font-weight: 400;
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px; 
  color: rgb(86, 84, 84);
  padding-bottom: .5rem;
  /* color: #e4c066;  */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); 
}

@media (max-width: 767px) {
  header h1 {
    font-size: 2.5rem;
    margin-left: 1.5rem;
  }
}

.hidden {
  display: none;
}

.icon-holder {
  position: absolute;
  top: 0;
  right: 0;
}

.icon {
  cursor:pointer;
  padding:10px;
}

.hamburger {
  width: 50px;
  height:5px;
  background-color:#332f2f;
  margin-top:5px;
}

.hamburger:last-of-type {
  margin-bottom: .3rem;
}

@media (max-width: 767px) {
  .hamburger {
    height: 3px;
  }
}

.icon::after {
  content: 'MENU';
}

ul {
  /* background-color: #f7f5eda8; */
  list-style: none;
  width: 100%;
  padding: 0;
  margin-top: 0;
  /* border-bottom: 1px solid #413c3c; */
}

ul a {
  color: #413c3c;
  text-decoration: none;
}

ul li {
  text-align: center;
  padding: 10px;
  /* border-top: 1px solid #413c3c; */
  transition: all .3s ease;
}

@media (max-width: 767px) {
  ul li {
    text-align: initial;
    margin-left: 1.5rem;
  }
}
  
li:hover {
  background-color:#655858;
  color:white;
  transform:translateX(-10px);
}

.thank-you {
  background-color: #f7f5eda8;
  padding: 0 1rem 1rem 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  text-align: center;
}

.thank-you h2 {
  font-size: 1rem;
}




    
  