@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');
.container {
  width: 100%;
  margin: 5rem auto 0 auto;
}
body {
  font-family: 'Roboto', sans-serif;
  color: white;
  background-image: linear-gradient(
      90deg,
      rgba(214, 214, 207, 0.9),
      rgba(186, 186, 171, 0.9)
    ), url(https://assets.hongkiat.com/uploads/minimalist-dekstop-wallpapers/4k/original/19.jpg?3);
  background-size: cover;
  z-index:-1;
}
.header {
  padding: 0 0.625rem;
  margin-bottom: 1.875rem;
  text-align: center;
  display: flex;
  flex-direction: column;
}

#title {
  font-size: 5rem;
  font-weight: 500;
}

#description {
  font-size: 1.5rem;
  font-style: italic;
}

h1,
p {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

p {
  font-size: 2rem;
}


form {
  width: 50%;
  background: rgba(107, 112, 92, 0.5);
  padding: 3rem 0.625rem;
  margin: auto;
  border-radius: 0.5rem;
  justify-content: center;
}

@media (min-width: 500px) {
  form {
    padding: 5rem;
  }
}

.form-group {
  margin: 0 auto 1.25rem auto;
  padding: 0.25rem;
}

.form-control {
  display: block;
  width: 100%;
  height: 2.375rem;
  padding: 0.375rem 0.75rem;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  border-color: #80bdff;
  outline: 1;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

label {
  display: flex;
  align-items: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.input-textarea {
  min-height: 120px;
  width: 97%;
  padding: 0.75rem;
  border-radius: 0.5rem;
  resize: vertical;
}

.submit-button {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background: rgba(107, 112, 92, 0);
  color: white;
  border-radius: 0.5rem;
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  cursor: pointer;
}

::placeholder {
  font-family: 'Roboto', sans-serif;
  font-size: 1.5rem;
}