html {
  overflow-y: hidden;
  font-family: "Roboto", sans-serif;
}
body {
  background-image: url("./background_desk.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}
content {
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: -225px;
  text-align: center;
}
span {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
h3 {
  font-size: 30px;
  font-weight: 500;
}
h2 {
  font-size: 40px;
  font-weight: 500;
}
button {
  width: 270px;
  height: 80px;
  background-color: #898b8b;
  color: #e9f149;
  text-shadow: rgb(11, 10, 6) 1px 0 10px;
  font-size: 26px;
  border-radius: 35px;
  border: #ffffff 2px solid;
  cursor: pointer;
}

@media (max-width: 720px) {
  content {
    width: 60%;
  }
}
@media (max-width: 576px) {
  content {
    width: 60%;
    margin-left: -100px;
  }
}
@media (max-width: 450px) {
  content {
    width: 80%;
    margin-left: -80px;
  }
}

@media (max-width: 420px) {
  body {
    background-image: url("./background_mobile.jpeg");
    justify-content: start;
  }
  content {
    margin: 0;
    margin-top: 120px;
    color: rgb(98, 97, 97);
  }
  h3 {
    font-size: 20px;
    font-weight: 500;
    margin: 5px 0;
  }
  h2 {
    font-size: 23px;
    font-weight: 500;
    margin: 30px 0;
  }
}
