* {
  font-family: sans-serif;  box-sizing: border-box;
}

body {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  color:#f8f9fa;
  margin: 0;
}

.container {
  width: 80%;
  margin: 3.125rem auto 0 auto;
  padding: 2rem;
}


body::before {
  content:'';
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background: var(--color-red);
  background-image: linear-gradient(
      90deg,
      rgba(130, 0, 0, 0.8),
      rgba(12, 0, 0, 0.10)
    ), url(https://media.istockphoto.com/id/841479036/photo/different-dumbbell-weights-in-fitness-center.jpg?s=612x612&w=0&k=20&c=OoDHlNHhhB9azI3p7fLknYUXDCwLCjs1A0M1YdmMhwY=);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

  /* background: red;
background-image: linear-gradient(
115deg,
rgba(90, 40, 40, 0.8),
rgba(200, 30, 30, 0.8)
), url(https://media.istockphoto.com/id/841479036/photo/different-dumbbell-weights-in-fitness-center.jpg?s=612x612&w=0&k=20&c=OoDHlNHhhB9azI3p7fLknYUXDCwLCjs1A0M1YdmMhwY=); */
}

/* .container {
  max-width: 720px;
} */

.header {
padding: 0 0 0.625rem;
margin-bottom: 1.875rem;
  font-size: 1.5rem;
}

.description {
font-style: italic;
font-weight: 200;
text-shadow: 0.5px 0.5px 0.5px rgba(0, 0, 0, 0.4);
}

.clue {
margin-left: 0.25rem;
font-size: 0.9rem;

}

.text-center {
  text-align: center;
}

/* FORM */

form {
  padding: 2.5rem;
  background-color: rgba(255, 255, 255, 0.30);
  border-radius: 0.25rem;
  width: 80%;
  margin: 0 auto;
}

 .form-group {
  margin: 0 auto 1.25rem auto;
  padding: 0.25rem;
}

.form-control {
  display: block;
  width: 100%;
  height: 2.7rem;
  padding: 0.75rem 0.75rem;
  color: #868e96;
  border-radius: 0.25rem;
  /* border: 1px solid;
  transition: border-color 1s ease-in-out, box-shadow 1s ease-in-out; */
  
}

.form-control:focus {
/*   outline: none;
  border-color: #ff6b6b; */
}

.input-radio, .input-checkbox {
  display: inline-block;
  margin-right: 0.625rem;
  min-height: 1.25rem;
  min-width: 1.25rem;
  
}

.input-textarea {
  min-height: 120px;
  min-width: 100%;
  padding: 0.635rem;
  resize: vertical;
/*   outline: none;
  border-color: #ff6b6b; */

}

.submit-button {
  display: block;
  width: 100%;
  padding: 0.70rem;
  background: #2b8a3e;
  color: inherit;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  
}

button:active {
  background-color: #ff0000;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
}

h1 {
margin-top: 1rem;
margin-bottom: 0.5rem;
}



h1, p {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1.125rem;
}

label {
display: flex;
align-items: center;
font-size: 1.125rem;
margin-bottom: 0.5rem;
}

input, button, select, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}