/* Header i Footer */
#header {
  width: 100%;
  height: 70px;
}

#header {
  text-align: center;
  background-color: #9e2a23;
}

#header img {
  width: 150px;
}

/* div principal */
#main {
  background-color: white;
  display: flex;
  justify-content: center;
  font-size: 20px;
  text-align: center;
}

/* Formulari */
form {
  width: 100%;
}

form input {
  font-size: 20px;
  width: 90%;
  padding: 1px 2px;
  text-align: center;
}

form label {
  font-size: 28px !important;
}

button {
  margin-top: 10px !important;
  padding: 8px 16px;
  margin: 2px auto;
  font-size: 20px;
}

/* Media queries */
@media screen and (min-width: 768px) {
  form {
    width: 80%;
  }

  label {
    font-size: 24px;
  }
}

@media screen and (min-width: 1200px) {
  form {
    margin-top: 120px;
    width: 60%;
  }

  label {
    font-size: 26px;
  }
}
