* {
  margin: 0;
  padding: 0;
  font-family: "Allerta Stencil", sans-serif;
  font-weight: 400;
  font-style: normal;
  box-sizing: border-box;
  /* background-color: #B692C2; */
}
body {
  width: 100vw;
  height: 100vh;
  background-image: url("/images/background.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.hero {
  width: 100%;
  height: 100%;
  text-align: center;
}
.player {
  aspect-ratio: 16/5.5;
  width: 97%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
  margin-top: 105px;
}
.hero h1 {
  margin-top: 25px;
  font-size: 5vw;
  text-align: center;
  margin-bottom: 10px;
}
form {
  /* background-color: rgb(11, 11, 11); */
  display: inline-block;
  width: fit-content;
  height: 45px;
  margin-top: 15px;
  /* margin-left: 10px; */
}
form input {
  /* border: none; */
  outline: none;
  padding-left: 10px;
  height: 45px;
  width: 800px;
  font-size: 12px;
  background-color: #fff;
  margin: auto;
  border-radius: 10px 0 0 10px;
}
form button {
  border: none;
  outline: none;
  background-color: #791eb6;
  height: 45px;
  width: 125px;
  cursor: pointer;
  color: #ffffff;
  border-radius: 0 10px 10px 0;
}
span {
  color: #fff;
  margin-top: 10px;
  display: block;
  margin-left: 25px;
}

@media screen and (max-width: 600px) {
  .hero {
    width: 100%;
    height: 100%;
    color: #fff;
  }
  h1 {
    font-size: 36px;
  }
  .player {
    height: 350px;
    margin-top: 105px;
  }
  form {
    height: 45px;
    margin-top: -55px;
    margin-left: 5px;
  }

  form input {
    font-size: 8px;
    width: 280px;
  }
  form button {
    width: 55px;
    font-size: 9px;
    border: none;
    outline: none;
    background-color: #791eb6;
    height: 45px;
    cursor: pointer;
    color: #ffffff;
  }
  span {
    margin-left: -5px;
    text-align: center;
  }
}
