body {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6)),
    url("https://images.pexels.com/photos/5711445/pexels-photo-5711445.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  margin-top: 10px;
}

i {
  font-size: 3.5rem;
  color: red;
  margin-bottom: 20px;
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 400px;
}

select {
  margin-top: -10px;
  width: 100%;
  padding: 10px 10px;
  text-align: center;
  font-size: 1.1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

input {
  padding: 15px 10px;
  width: 95%;
  font-size: 2.2rem;
  text-align: center;
}

.divider {
  color: #ccc;
  font-size: 2rem;
}

.formular {
  font-size: 2rem;
  color: #ccc;
}

/* media query */
@media screen and (max-width: 600px) {
  h1 {
    text-align: center;
  }
}
