@import url('https://fonts.googleapis.com/css2?family=Bungee&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.bungee-regular {
  font-family: "Bungee", sans-serif;
  font-weight: 400;
  font-style: normal;
}
body {
    background-color: #000F1A;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
h1 {
    color: #CCE8FF;
    font-size: 64px;
    margin-top: 100px;
    margin-bottom: 25px;
}
h3{
    color: #CCE8FF;
    font-size: 32px;
}
#div1{
    width: fit-content;
    margin-bottom: 75px;
}
#div1 hr{
    height: 6px;
    background-color: #CCE8FF;
    border-radius: 7px;
}
input[type="email"] {
  background-color: transparent;
  border: 5px solid #ffffff;
  border-radius: 30px;
  text-align: center;
  color: #ffffff;
  font-size: 18px;
  font-family: "Bungee", sans-serif;
  outline: none;
  width: 572px;
  height: 60px;
  text-align: left;
  padding-left: 20px;

}

input[type="email"]::placeholder {
  color: hsl(207, 100, 90,0.5);
  text-transform: uppercase;
  font-size: 18px;
  text-align: left;
  padding-left: 20px;

}

input[type="button"],
input[type="submit"] {
  background-color: #CCE8FF;
  color: #262925;
  border: none;
  border-radius: 30px;
  font-size: 24px;
  font-family: "Bungee", sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s ease;
  width: 572px;
  height: 60px;
}

input[type="button"]:hover,
input[type="submit"]:hover {
  background-color: #E5F3FF;
}

#div2{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 50vw;
}
#canvas{
    height: 390px;
    width: 364px;
}
form {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    height: 170px;
    width: 364px;
}
h5{
    position: fixed;
    bottom: 2.5vh;
    color: hsla(207, 100%, 90%, 0.5);
    font-size: 20px;
}
 #texture{
    display: none;
 }

@media (max-width: 1650px) {
    #div2 {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90vw;
    gap: 20px;
  }
}

/* ---------------------- */
/* MOBILE VERSION (≤576px)*/
/* ---------------------- */
@media (max-width: 576px) {
  h1 {
    font-size: 20px;
    margin-top: 100px;
    margin-bottom: 35px;
    text-align: center;
  }

  h3 {
    font-size: 11px;
    text-align: center;
  }

  h5 {
    font-size: 10px;
    bottom: 2vh;
  }

  #div1 {
    width: 249px;
    margin-bottom: 72px;
  }

  #div1 hr {
    height: 3px;
  }

  #div2 {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90vw;
    gap: 20px;
  }

  #canvas {
    width: 163px;
    height: 175px;
    margin-bottom: 50px;
    margin-right: 25px;
  }

  form {
    width: 100%;
    height: auto;
    gap: 10px;
    align-items: center;
  }

  input[type="email"] {
    width: 237px;
    height: 30px;
    font-size: 10px;
    border: 3px solid #ffffff;
    border-radius: 20px;
    padding-left: 10px;
    margin-bottom: 22px;
  }

  input[type="email"]::placeholder {
    font-size: 10px;
    padding-left: 5px;
  }

  input[type="button"],
  input[type="submit"] {
    width: 237px;
    height: 30px;
    font-size: 12px;
    border-radius: 20px;
  }
  #texture{
    display: block;
    position: absolute;
    bottom: 0;
    width: 100vw;
    z-index: -1;
  }
}


