html {
  color: #313131;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header > h2 {
  text-align: center;
  /* font-size: small; */
}

header > h3 {
  text-align: center;
  /* font-size: smaller; */
}

@media only screen and (min-width: 600px) {
  h2 {
    font-size: medium;
  }
  h3 {
    font-size: small;
  }
}

@media only screen and (min-width: 768px) {
  h2 {
    font-size: large;
  }
  h3 {
    font-size: medium;
  }
}

fieldset {
  border: none;
  display: flex;
  flex-direction: column;
}

fieldset input,
fieldset textarea {
  margin-bottom: 10px;
  max-width: 500px;
}

textarea,
input {
  font-family: inherit;
  font-size: inherit;
}

input[type=submit] {
  color: white;
  background-color: #E40100;
  border-color: #E40100;
  font-family: inherit;
  padding: 5px;
}

input[type=submit]:disabled {
  background-color: #c86463;
  border-color: #c86463;
}

.content {
  background-image: url("../images/background.png");
  background-repeat: repeat-x;
  background-size: contain;
  flex: auto;
}

.privacy-policy-content {
  padding: 20px;
}

.sentinel-logo {
  display: flex;
  justify-content: center;
}

.sentinel-logo img {
  max-width: 280px;
  width: 50%;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #6c5c5c;
  color: rgb(211, 209, 209);
  margin-top: auto;
  height: 50px;
  padding: 0 10px 0 10px;
}

footer a {
  color: #efeeee;
}

#contact-container {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

#contact-container form {
  max-width: 500px;
  width: 100%;
}

#success-message {
  margin-top: 50px;
  font-size: large;
  text-align: center;
}

#error-message {
  color: red;
  font-weight: bold;
  text-align: center;
}