* {
  box-sizing: border-box;
  overflow-x: visible;
}
header {
  text-align: center;
}

body {
  max-width: 1280px;

  background-color: black;
  margin: 0px auto;
  padding: 20px;
  border: #ffb238;
  border-style: solid;
  border-width: 5px;
  /*color: rgb(243, 106, 106);*/
  color: #ffb238;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:active {
  text-decoration: none;
}

p {
  /*color: #1780A1;
    color: #6A0136;*/
  display: inline-flex;
  color: #5cab7d;
  margin: 5px;
}

h1,
h2 {
  text-align: center;
}

h1 {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}
h2 {
  text-decoration: solid underline;
}
h2:hover {
  color: #5cab7d;
}

h3 {
  text-align: center;
  margin: 5px;
}

.quote {
  line-height: 2;
  text-align: center;
  font-style: italic;
  /*font-weight: bold;*/
  color: #5cab7d;
}

input {
  background-color: yellow;
  color: black;
}

label {
  color: rgb(31, 211, 243);
}

tr:nth-of-type(2n) {
  background-color: #44633f;
}
