 body {
  font-family: "Bahnschrift", sans-serif;
  background-color: #000000;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url("../images/wormhole-life-support-cover.jpg");
  background-attachment: fixed;
  background-position: center center;
  background-size: 110% auto;
  background-repeat: no-repeat;
  color: #e0e0e0;
  margin: 0;
  padding: 20px;
  font-size: 13pt;
}

a {
  color: #17b21c;
  transition: color 0.3s ease;
}
a:visited {
  color: #17b21c;
}
a:hover {
  color: #15f319;
}
a:active {
  color: #ffffff;
  transition: none;
}

@font-face {
  font-family: "SF Mono";
  src: url("../font/SFMonoRegular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Bahnschrift";
  src: url("../font/bahnschrift.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
h1, h2, h3 {
  text-align: center;
  font-family: "Bahnschrift", sans-serif;
}

footer {
  background-color: #1a1a1a;
  color: #b0b0b0;
  padding: 10px;
  text-align: center;
  border-radius: 5px;
  margin-top: 20px;
}

form,
form input,
form textarea,
form select,
form button,
form label {
  font-family: "SF Mono", monospace;
  font-size: 0.9rem;
}

select, textarea, input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  margin-top: 10px;
  font-size: 0.8 rem;
  background-color: #444;
  color: #ffffff;
  border: 1px solid #444;
  border-radius: 5px;
  box-sizing: border-box; /* Ensures padding and borders are included in the width */
}

input[type=submit] {
  background-color: #acacac;
  color: #3d3d3d;
  border: none;
  cursor: pointer;
  margin-top: 20px;
  border-radius: 5px;
}
input[type=submit]:hover {
  background-color: #555;
  transition: color 0.3s ease;
}
input[type=submit]:active {
  background-color: #666;
}

input[type=submit].danger-button, .danger-button {
  color: #f8d7da;
  background-color: #721c24;
}
input[type=submit].danger-button:hover, .danger-button:hover {
  background-color: #b10000;
}

input[type=submit].warning-button {
  color: #fff3cd;
  background-color: #856404;
}
input[type=submit].warning-button:hover {
  background-color: #bfa900;
}

input[type=submit].info-button {
  background-color: #1c3f1d;
  color: #d4edda;
}
input[type=submit].info-button:hover {
  background-color: #2d572c;
}

/* classes */

.flex-container {
  display: flex;
  justify-content: space-between;
  align-items: top;
  margin-bottom: 50px;
}

.flex-container > div,
.flex-container > a.mini-wrapper {
  background-color: #cbcbcb;
  border-radius: 5px;
  flex: 1;
  margin-right: 10px;
  padding: 0 20px 20px 20px;
  text-decoration: none;
  width: 30%;
}
.flex-container > div:hover,
.flex-container > a.mini-wrapper:hover {
  background-color: #588d74;
}

.flex-container > div:last-child,
.flex-container > a.mini-wrapper:last-child {
  margin-right: 0;
}

.message {
  background-color: #2d572c;
  color: #d4edda;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #1c3f1d;
  border-radius: 5px;
}

/* ids */

#content {
  max-width: 1200px;
  margin: 0 auto;
}

/* Responsive design */

@media (max-width: 768px) {
  .flex-container {
    flex-direction: column;
  }
  .flex-container > div {
    margin-right: 20px;
    margin-bottom: 20px;
    width: 90%;
  }
}
