/* Open Sans */
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/open-sans-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("../fonts/open-sans-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

svg {
    height: 100vh;
    width: 100vw;
    position: absolute;
    z-index: 500;
    left: 0;
    right: 0;
    margin: auto;
    top: 25px;
  }

  .dletters-container {
    position: absolute;
    display: flex;
    justify-content: center;
    width: 300px;
    height: 120px;
    background-color: #145465;
    bottom: -2px;
    left: 0;
    right: 0;
    margin: auto;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    align-items: center;
    font-family: "Open Sans", sans-serif;
  }
  
  .input {
    display: none;
  }
  
  .text, .offscreen-text {
    width: 100%;
    display: block;
    position: absolute;
  }
  
  .offscreen-text {
    text-align: center;
    top: -9999px;
  }
  
  .text span {
    position: absolute;
  }

  @media (max-width: 650px) {
    .dletters-container {
      width: 100%;
      bottom: -80px;
    }
  }