* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    color: #070713;
  }
  .top {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    position: absolute;
    height: 80px;
    background-color: #070713;
    overflow: hidden;
  }
  ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: rgba(0,0,0,0);
  }
  
  li {
    float: left;
  }
  
  li a {
    display: block;
    color: #fff;
    text-align: center; 
    margin: 17px 30px;
    text-decoration: none;
    font-family: 'Times New Roman', Times, serif;
    font-size: 20px;
  }
  a {
    position: relative;
    text-decoration: none;
  }
a::before {
      content: '';
      position: absolute;
      width: 100%;
      height: 2px;
      border-radius: 4px;
      background-color: #fff;
      bottom: 0;
      left: 0;
      transform-origin: right;
      transform: scaleX(0);
      transition: transform .3s ease-in-out;
    }
  
  a:hover::before {
    transform-origin: left;
    transform: scaleX(1);
  }
  .flippy {
    position: relative;
  }
  .flippy span {
    position: relative;
    display: inline-block;
    animation: flip 3s infinite;
    animation-delay: calc(.3s * var(--i))
  }
  @keyframes flip {
    0%,80% {
      transform: rotateY(360deg) 
    }
  }
  h1 {
    text-align: center;
    position: inherit;
    font-family: 'Baskervville SC', serif;
    font-size: 4rem;
    margin-top: 100px;
    margin-bottom: 90px;
  }
  h4 {
    text-align: center;
    font-size: 2rem;
    font-family: 'Raleway', Helvetica, sans-serif;
    font-weight: 300;
    margin-top: 50px;
    line-height: 150%;
  }
  .hero {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  img {
    width: 17.5rem;
    height: 17.5rem;
    border-radius: 20px;
    object-fit: cover;
  }
  .unit {
    padding: 1rem;
    text-align: center;
    width: 20rem;
  }
  .unit h3 {
    font-family: "Pinyon Script", cursive;
    font-size: 2rem;
    padding-top: 1rem;
  }
  .funit {
    padding: 30px;
    margin-left: 18vw;
    margin-top: 60px;
    padding-top: 30px;
    border-radius: 20px;
    box-shadow: 5px 5px 5px #222;
    border: 1px solid rgb(240, 240, 240);
    padding-bottom: 30px;
    margin-bottom: 20px;
    margin-left: 0px;
    width: fit-content;
    align-self: center;
    margin-left: auto;
    margin-right: auto;
  }
  .💪 {
    display: flex;
    align-self: center;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
  }
  .family {
    display: grid;
    justify-content: center;
    align-items: center;
  }
  @keyframes textclip {
    to {
      background-position: -200% center;
    }
  }
  h2 {
    font-family: 'Baskervville SC', serif;
    font-size: 1.8rem;
    margin: 2rem 0px;
    text-align:center;
  }
  p {
    width: 40rem;
    font-family: 'Raleway', Helvetica, sans-serif;
    font-size: 1.1rem;
    text-indent: -2.5rem;
    margin: .5rem 0px;
    line-height: 2rem;
  }
  @media only screen and (max-width: 768px) {
    .unit {
      width: 80vw;
    }
    .💪 {
      display: block;
    }
  }
  .hidden a {
    display: block;
    color: #070713;
    text-align: center; 
    margin: 17px 30px;
    text-decoration: none;
    font-family: 'Raleway', Helvetica, sans-serif;
    font-size: 20px;
    width: fit-content;
  }
  .hidden {
    display: grid;
    align-items: center;
    justify-content: center;
  }
  .hidden a::before {
    background-color: #070713;
  }