*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
    color: white;
    font-family: sans-serif;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    z-index: -1;
    background-image: url(https://upload.wikimedia.org/wikipedia/commons/1/15/Hawaii_Community_College_at_Hilo-Entrance.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.container {
    width: 100%;
    margin: 3rem auto 0 auto;
}

@media (min-width: 576px) {
    .container {
      max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

h1 {
    font-weight: 400;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
    text-align: center;
}

#description {
    font-style: italic;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
    text-align: center;
}

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

form {
    background-color: rgba(0, 20, 0, 0.6);
    padding: 2.5rem 0.625rem;
  border-radius: 0.25rem;
}

.form-group {
    padding: 1rem 1rem;
    line-height: 1.8rem;
    font-size: 120%;
}

.form-control {
    display: flex;
    width: 100%;
    height: 2.5rem;
    font-size: 100%;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(0, 40, 0, 0.8);
    border-radius: 0.35rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    border-color: rgba(0, 140, 0, 0.8);
    outline: 0;
    box-shadow: 0 0 0 0.1rem rgba(0, 200, 0, 0.8);
}

.input-radio,
.input-checkbox {
    display: flex;
    align-items: center;
    margin: 0.6rem;
    min-height: 1.25rem;
    min-width: 1.25rem;
}

.comments {
    min-height: 120px;
    width: 100%;
    padding: 0.6rem;
    resize: vertical;
}
.yesorno {
    min-height: 120px;
    width: 100%;
    padding: 0.6rem;
    resize: vertical;
}

.submit-button {
    display: flex;
    justify-content: center;
    font-size: 90%;
    width: 100%;
    padding: 0.6rem;
    background: rgb(0, 100, 0);
    color: white;
    border: 2px solid white;
    border-radius: 0.2rem;
    cursor: pointer;
  }
