body {
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #303030;
    font-family: Arial, sans-serif;
  }

  h1, h2, h3, h4, h5, h6, p, input, select {
      font-family: "Source Serif 4", serif;
      font-optical-sizing: auto;
      font-weight: 400;
      font-style: normal;
  }

  label {
      font-family: "Montserrat", sans-serif;
      font-optical-sizing: auto;
      font-weight: 600;
      font-style: normal;
      color: #EC1C23;
      font-size: smaller;
      letter-spacing: .75px;
  }

  .container {
    background-color: #FAF6EF;
    padding: 30px 50px;
    border-radius: 8px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
    text-align: center;
  }

  .logo {
    width: 100%;
    height: 100px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }

  img {
      height: 100%;
  }

  h2 {
    margin-bottom: 30px;
    font-size: 24px;
    color: #333;
  }

  label {
    display: block;
    text-align: left;
    margin-top: 20px;
    text-transform: uppercase;
  }

  input, select, button {
    margin-top: 3px;
    padding: 8px;
    width: 100%;
    box-sizing: border-box;
    background: white;
    outline: none;
    border: none;
  }

  #output {
    margin-top: 20px;
    font-weight: bold;
    word-break: break-word;
    padding: 10px;
  }

  button {
      margin-top: 30px;
      outline: none;
      border: none;
      background: #EC1C23;
      color: white;
      font-family: 'Montserrat';
      text-transform: uppercase;
      font-weight: 600;
      border-radius: 25px;
      width: 35%;
      transition: .3s ease-out;
  }

  input:focus-visible, select:focus-visible, button:focus-visible {
  outline: none;
  }

  .hidden {
    display: none;
  }

  #copyBtn {
    margin-top: 10px;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
  }

  button:hover {
      opacity: .7;
      transition: .3s ease-out;
  }

  #output {
      margin-top: 40px;
      font-weight: 400;
      font-family: 'Source Serif 4';
      word-break: break-word;
      /* background: #303030; */
      padding: 12px 0;
      color: #303030;
  }

  #copyBtn:hover {
    background-color: #555;
  }