*{
    padding: 0;
    margin: 0;
    overflow-x: hidden;
  }


body{
    width: 100%;
    height: 100vh;
    background: linear-gradient(
      to right,
      #faf9f7 0%,
      #faf9f7 33%,
      #f4f0ed 33%,
      #f4f0ed 67%,
      #faf9f7 67%, 
      #faf9f7 100%
    );
  }

ul{
    padding-top: 40px;
    max-width: 100%;
    display: flex;
    justify-content: center;
    list-style-type: none;
}

li.nav-links {
    padding: 0 20px;
    border: 1px transparent solid;
    border-radius: 40px; /* Flat top/bottom, rounded left/right */
    background-color: rgba(244, 240, 237, 0.8);
    display: inline-block; /* Ensures the shape respects padding */
    margin: 5px 0; /* Adds some vertical spacing */
    font-size: 1.3rem;
    margin-left: 2%;
    font-family: 'Italiana', serif;
}

li.nav-links:hover{
    background-color: rgba(255, 255, 255, 1);
    border: 1px black solid;
}

a {
    text-decoration: none;
    color: whitesmoke;
}

.images {
    border-radius: 20px;
}

p{
    margin-top: 2%;
    font-size: 1.7rem;
    text-align: left;
    font-family: 'Lora', serif;
    color: #453734;
}

h2{
    font-size: 4rem;
}

h1, h2 {
    color: #453734;
    font-family: 'Italiana', serif;
    align-self: flex-start;
}



.columnholder{
    display: flex;
}

.text {
    align-self:flex-start;
}

.column1{
    margin: 1%;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 33%;
    flex-basis: 1;
    object-fit: contain;
    justify-content: space-around;
}

.column2{
    margin: 1%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-basis: 2;
    max-width: 72%;
    object-fit: contain;
    justify-content:center;

}

#headshot{
    max-height: 50vh;
}

img{
    margin: 3%;
    max-height: 80vh;
    max-width: 70vw;
    width: auto;
    height: auto;
}

.column1paragraph{
    padding-left: 2%;
    padding-right: 2%;
}

.tagline {
    font-size: 1.5rem;
    margin: 0;
    padding: 0;
}

/* off-screen-menu */
.off-screen-menu {
    background-color:  rgba(91, 75, 63, 0.5);
    height: 100vh;
    width: 100%;
    max-width: 300px;
    position: fixed;
    top: 0;
    right: -300px;
    display: flex;
    flex-direction: column;
    align-items: center;    
    justify-content: flex-start;
    text-align: center;
    font-size: 3rem;
    transition: .3s ease;
    z-index: 1000;
  }
  .off-screen-menu.active {
    right: 0;
  }
  
  /* nav */
  nav {
    padding: 1rem;
    display: flex;
  }
  
  /* ham menu */
  .ham-menu {
    top: 30px; /* Adjust as needed for spacing */
    right: 40px; /* Adjust as needed for spacing */
    height: 50px;
    width: 40px;
    position: absolute;
    z-index: 1000000;
    display: none;  
  }
  .ham-menu span {
    height: 5px;
    width: 100%;
    background-color: #453734;
    border-radius: 25px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: .3s ease;
    display: none;
  }
  .ham-menu span:nth-child(1) {
    top: 25%;
  }
  .ham-menu span:nth-child(3) {
    top: 75%;
  }
  .ham-menu.active span {
    background-color: white;
  }
  .ham-menu.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .ham-menu.active span:nth-child(2) {
    opacity: 0;
  }
  .ham-menu.active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  
  li.ham-links {
    color:#e8e5df;
    list-style-type: none;
    padding: 30px 10px 10px 10px;
    
  }
  
  ul.ham-bar {
    margin-top: 40px;
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  
  @media (max-width: 1200px) {
    .ham-menu {
        display: block;
      }
      .ham-menu span {
        display: block;
      }
      
      h2 {
        font-size: 8vw;
      }

      .tagline {
        font-size: 4vw;
      }
      .navbar
      {
        display: none;
      }

      #banner {
        display: none; 
      }

      .columnholder {
        margin-top: 5%;
      }
      .column1 {
        min-width: 33%;
        justify-content: center;
      }
      p {
        font-size: 4vw;
      }
      .column2 {
        margin-top: 12%;
      }
  }