
:root {
    font-size: 3vmin;
}

body {
    background-image: url("images/stars.jpg");
    display: flex;
    justify-content: center;
    align-items: center;
}

h1 {
    font-family: "Reenie Beanie";
    margin-bottom:10px;
    font-size: 6rem;
    text-align: center;
}



p {
    font-family: Quicksand;
    padding-left: 40px;
    padding-right: 40px;
    line-height:1.5em;
}

main {
    margin-top: 6vh;
    background-color: rgb(255, 255, 255);
    min-height: 84vh;
    border: 1px solid;
    border-radius: 0px;
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 6vh;
}

#content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.form-group {
    font-family: "Quicksand";
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.form-element {
    padding: 0.5rem;
    margin: 0.3rem;
    width: 200px;
}

#submit {
    display: block;
    width: 100%;
    font-family: inherit;
    padding: 0.5rem;
    font-size: 16px;
    border: 1px black solid;
    border-radius: 8px;
    background-color:white;
  }

  #submit:hover {
      background-color:lightskyblue;
  }

  #code {
    width: 100%;
    font-family: "Quicksand";
    font-size: 1rem;
    padding: 0.3rem;
    border-radius: 8px;
    border-width:1px;
    border-style:solid;
    border-color: black;
  }

  @media (max-width: 768px) {
      main {
          width: 100%;
      }

      p {
        font-family: Quicksand;
        font-size:22px;
        margin: 20px 20px 20px 20px;
    }

    #home-p {
        text-align: center;
    }

  }
