* {
    padding: 0;
    margin: 0;
  }

  html{
    scroll-behavior: smooth;
  }
  
  h2 {
    font-family: "Poiret One", cursive;
  }
  
  p {
    font-family: "Montserrat", sans-serif;
    margin-left: 1rem;
    margin-top: 2rem;
    width: 90%;
  }
  
  header {
    background-color: #262626;
  }
  
  li {
    list-style: none;
  }
  
  a {
    color: white;
    text-decoration: none;
  }
  
  
  
  .contained {
    max-width: 1224px;
    width: 92%;
    margin: 0 auto;
    position: relative;
  }
  
  .navbar {
    min-height: 55px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Poiret One", cursive;
  }
  
  .nav-branding {
    font-size: 2rem;
    font-family: "Cinzel Decorative";
  }
  
  .nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
  }
  
  .nav-link {
    transition: 0.3s ease-out;
  
  }
  
  .nav-link:hover {
    color: rgb(109, 130, 151);
    text-decoration: underline;
    transition: 0.3s;
  }
  
  .hamburger {
    display: none;
    cursor: pointer;
  }
  
  .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: white;
  }
  
  @media (max-width: 1024px) {
    .hamburger {
      display: block;
    }
  
    .hamburger.active .bar:nth-child(2) {
      opacity: 0;
    }
    .hamburger.active .bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }
  
    .nav-menu {
      position: fixed;
      left: -100%;
      top: 55px;
      gap: 0;
      flex-direction: column;
      background-color: #262626;
      width: 100%;
      text-align: center;
      transition: 0.3s;
    }
  
    .nav-item {
      margin: 16px 0;
    }
  
    .nav-menu.active {
      left: 0;
      position: fixed;
    }
  }

  .about-img{
    height: 25vh;
    width: 100%;
    background-color: red;
    background:rgba(0,0,0,0.3) url(/images/samples.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: darken;
    text-align: center;
    display: grid;
    place-content: center;
    font-family: "Poiret One", cursive;
    color: white;
  }


  .head{
    margin-left: 1rem;
    margin-top: 1rem;
    font-size: 2.2rem;
    font-family: "Poiret One", cursive;
  }

  .img{
    width: 60%;
    padding: 4rem;
    height: 6rem;
    margin: 1.5rem auto;
    box-shadow: -11px 14px 13px 0px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: -11px 14px 13px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: -11px 14px 13px 0px rgba(0, 0, 0, 0.75);
    background-image: url(/images/samplesm.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .contact, #contact {
    border: 1px solid black;
    border-radius: 5px;
    margin: 0 auto;
    margin-block: 2.5rem;
    padding-block: 1.5rem;
    width: 90%;
    transition: 0.3s;
  }
  
  .contact:hover {
    background-color: rgb(25, 25, 25);
    color: white;
    transition: 0.3s;
  }
  
  .contact h2 {
    text-align: center;
    margin: 1rem;
    font-family: "Poiret One", cursive;
  }
  
  .contact p {
    text-align: left;
    padding-left: 0.2rem;
    font-family: "Montserrat", sans-serif;
    padding: 1rem;
    margin: 0;
  }
  
  
  
  .foot {
    width: 100%;
    height: 6rem;
    background-color: rgb(25, 25, 25);
    text-align: center;
    padding-top: 1rem;
    color: #ffffff;
    font-family: "Montserrat", sans-serif; ;
  }