  .hamburger {
    display: none;
    background: none;
    outline: none;
    border: none;
  }
  .mobile-nav {
    display: none;
  }
  .mobile-nav li a.is-open {
    color: #00ffffb3
  }

  /* copy and paste to other .css files for easy nav add */

  .home-top:hover path, 
  .home-top:focus-within path, 
  .home-top:active path {
    fill: #c55050;
    transition: .2s ease-in-out;
  }
  .nav-ul-top {
    position: absolute;
    top: 2.3rem;
    right: 0;
    color: rgb(168, 168, 168);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    z-index: 3;
  }
  .is-active-top {
    color: #c55050;
  }
  .nav-ul-top ul {
    max-width: 100%;
    width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
  }
  .nav-ul-top li {
    margin: 0 auto;
  }
  .nav-ul-top li a {
    position: relative;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    transition: .2s ease-in-out;
  }
  .nav-ul-top li a:hover, 
  .nav-ul-top li a:focus, 
  .nav-ul-top  li a:active {
    color: #c55050;
  }
  .svg-container {
    width: 75px;
    text-align: center;
  }
/* copy and paste to other .css files for easy nav add */

  header {
    margin-top: 6rem;
  }

  .title {
    color: #833636;
    font-size: clamp(3rem, 6vw, 5rem);
    letter-spacing: .15rem;
    text-align: center;
    position: relative;
  }
  .period {
    display: inline-block; /* animation on span won't work without display property */
    color: rgb(168, 168, 168);
    text-shadow: 0px -3px 9px rgba(255, 255, 255, 0.8), 0px 1px 9px rgba(255, 255, 255, 0.8);
    animation: Jump 1.5s ease-in-out 5;
    font-size: clamp(2.5rem, 3vw, 3rem);
  }
  @keyframes Jump {
    50% {
      transform: translateY(-7px);
    }
  }

  .social-icons {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 30%;
    margin: .8rem auto;
  }
  .icon path {
    fill: "#a8a8a8";
    transition: .35s;
  }
  .icon:hover path, 
  .icon:focus-within path, 
  .icon:active path {
    fill: #c55050;
  }

.contact-form {
    border: 2.5px solid #6b2828;
    border-radius: 10px;
    width: 95%;
    max-width: 500px; /* stops form from getting larger */
    margin: 3rem auto;
    font-family: 'Open-Sans', sans-serif;
  }

  .form-field {
    margin: 1rem 1.5rem; /* evenly spaces all form fields */
  }

  input, textarea {
    outline: none;
    padding: .9rem;
    border-radius: 4px;
    border: 2px solid rgb(168, 168, 168);
    width: 100%;
    background-color: rgba(255, 255, 255, .1);
    color: white;
    font-family: 'Open-Sans', sans-serif;
  }

  input:focus, textarea:focus,
  input:active, textarea:active {
    border: 2px solid #c55050;
  }
  textarea[placeholder] {
    font-family: 'Times New Roman', 'sans-serif';
    color: gray;
  }
  textarea[placeholder]:focus {
    color: white;
  }

  label[for^=message] {
      color: #c55050;
      display: block;
      padding-bottom: .15rem;
  }
  
  form button {
    margin: 0 auto 1rem 1.5rem; /* aligns button to the left */
    padding: .5rem 1rem;
    border: 2px solid rgb(168, 168, 168);
    border-radius: 4px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, .1);
    color: rgb(168, 168, 168);
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Open-Sans', sans-serif;
    transition: .2s;
  }
  form button:hover, 
  form button:focus, 
  form button:active {
    border: 2px solid #c55050;
    color: #c55050;
  }
  
  input[type='email']:valid:focus {
    border: 2px solid green;
  }
  
  input[type='email']:invalid:focus {
    border: 2px solid red;
  }
  
/* FLOATING LABEL STYLES */ 
  .hidden--visually {
    border: 0;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }

  .floating__input {
    padding: 1.3rem 1rem 0.6rem;
    font-size: .9rem;
  }
  
  .floating__input::placeholder {
    color: rgba(0, 0, 0, 0);
  }
  
  .floating__label {
    display: block;
    position: relative;
    max-height: 0;
    font-weight: 500;
    pointer-events: none;
    color: rgb(124, 124, 124);
  }
  
  .floating__label::before {
    content: attr(data-content);
    display: inline-block;
    filter: blur(0);
    backface-visibility: hidden;
    transform-origin: left top;
    transition: transform 0.2s ease;
    left: 1rem;
    position: relative;
  }
  
  .floating__label::after {
    bottom: 1rem;
    content: "";
    height: 0.1rem;
    position: absolute;
    transition: transform 180ms cubic-bezier(0.4, 0, 0.2, 1),
      opacity 180ms cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease;
    opacity: 0;
    left: 0;
    top: 100%;
    margin-top: -0.1rem;
    transform: scale3d(0, 1, 1);
    width: 100%;
  }
  
  .floating__input:focus + .floating__label::after {
    transform: scale3d(1, 1, 1);
    opacity: 1;
  }
  
  .floating__input:placeholder-shown + .floating__label::before {
    transform: translate3d(0, -2.2rem, 0) scale3d(1, 1, 1);
  }
  
  .floating__label::before,
  .floating__input:focus + .floating__label::before {
    transform: translate3d(0, -3.12rem, 0) scale3d(0.82, 0.82, 1);
  }

  .floating__input:focus + .floating__label::before {
    color: #00ffffb3;
  }
  
/* NAV/FOOTER STYLES */
  nav {
    width: 100%;
  }

  @keyframes Pulse {
    50% {
      transform: scale(1.2);
    }
  }
  .heart {
    animation: Pulse 1.5s infinite ease-in-out;
  }

  .mobile-heart {
    display: none;
  }

  .footer-mobile-nav {
    display: none;
  }

  .nav-ul {
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
  }

  .nav-ul li {
    margin: 0 auto;
    /* width: max-content; */
  }

  .nav-ul li a {
    color: rgb(168, 168, 168);
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    transition: .2s;
    position: relative; /* needed for underline */
    font-size: clamp(1.1rem, 2vw, 1.3rem);
  }
  .nav-ul li a.is-open, .footer-mobile-nav li a.is-open {
    color: #c55050;
  }

  .nav-ul li a:hover, 
  .nav-ul li a:focus, 
  .nav-ul li a:active {
    color: #c55050;
  }

    /* UNDERLINE FROM MIDDLE */
.hover-text-from-middle::after {
  content: '';
  position: absolute;
  display: block;
  left: 50%;
  right: 100%;
  bottom: -5px;
  border-bottom: 2px solid #c55050;
  transition: .5s;
}
.hover-text-from-middle::before {
  content: '';
  position: absolute;
  display: block;
  right: 50%;
  left: 100%;
  bottom: -5px;
  border-bottom: 2px solid #c55050;
  transition: .5s;
}

.item-to-underline:hover .hover-text-from-middle::after {
  right: -2px; /* 10px goes to the edge of the text, 0 is too far */
}
.item-to-underline:hover .hover-text-from-middle::before {
  left: 0;
}

  .home-bottom {
    position: absolute;
    bottom: 3.2rem;
    left: 50%;
    margin-left: -21px;
    cursor: pointer;
  }

  .home-bottom:hover path, 
  .home-bottom:focus-within path, 
  .home-bottom:active path {
    fill: #c55050;
    transition: .2s;
  }

  .copyright {
    position: relative;
    color: rgb(168, 168, 168);
    font-size: clamp(.8rem, 1vw, .9rem);
    text-align: center;
    width: 90%;
    margin: 8rem auto 1rem auto;
  }