.overlay {
    background-color: rgba(0, 0, 0, 0.7);
    width: 100vw;
    height: 200%;
    position: fixed;
    z-index: 999;
    top: 0;
    display: none;
  }

  .overlay a {
      text-decoration: none;
  }
  
  #add {
    max-width: 800px;
    background-color: white;
    margin: 20vh auto;
    height: 470px;
    display: flex;
    text-align: center;
    border-radius: 0;
    position: relative;
  }
  
  #add > a {
      display: flex;
  }
  
  #exit {
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 0;
    z-index: 9999;
  }

  #exit p {
      color: white;
      font-size: 1.8rem;
      margin: 0;
  }
  
  .popup-container {
    position: relative;
  }
  
  .popup-container h4 {
    width: 400px;
    text-align: center;
    color: #33353e;
    font-size: 2.6em;
    margin-bottom: 10px;
    margin-top: 10px;
    font-weight: 800;
  }

  .popup-container h5 {
    margin: 0;
    font-size: 1.6rem;
  }

  .quote {
    font-family: "FS Kim", sans-serif;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    padding: 8px 15px;
    margin-bottom: 0.5rem;
  }
  
  .right-box {
    background-color: #17253B;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .right-box img {
    width: 90%;
  }
  
  .right-box p {
    color: white;
    float: right;
    width: 50px;
    font-size: 2em;
    margin-top: -3px !important;
  }
  
  .left-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  
  .left-box img {
    max-height: 120px;
    max-width: 300px;
    align-self: center;
  }
  
  .button-wrapper p:last-of-type {
    font-weight: 400;
    font-size: 14px;
    margin: 0;
    font-family: "FS Kim", sans-serif;
  }
  
  .button {
    background-color: var(--primary-color);
    font-family: Overpass, sans-serif;
    padding: 10px 60px;
    font-size: 1.2em !important;
    text-decoration: none;
    font-weight: 600 !important;
    color: #fff !important;
    border-radius: 4px;
    margin-bottom: 10px;
    -webkit-box-shadow: 0px 0px 7px 0px rgb(0 0 0 / 50%);
    -moz-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 7px 0px rgb(0 0 0 / 50%);
    transition: 200ms all ease-in-out;
  }
  
  .button:hover {
    color: #ffffff;
    background-color: var(--primary-color-accent);
  }
  
@media screen and (max-width: 900px) {
    .overlay {
        display: none !important;
    }
}