h1, h3, p, div {
  text-align: center;
}

h1, h3 {
  font-family: 'comfortaa';
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.flexcol {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}

.flexrow {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.flexcenter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.flexrowcenter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.sidebar {
  margin-left: auto;
  padding: 10px;
  background-color: #f4f4f4;
  flex: 1;
  width: 300px;
  max-width: 300px;
}

.iconsize {
  max-width: 100%;
  height: auto;
}

.button a {
  display: block;
  padding: 5px 10px;
  background-color: #007bff;
  color: white;
  text-align: center;
  margin: 5px 0;
  text-decoration: none;
  font-size: 14px;
}

.widebox {
  padding: 20px;
  flex: 2;
}

@media (max-width: 768px) {
  .flex,
  .flexrow {
    flex-direction: column;
    align-items: center;
  }

  .sidebar, .buttonbox, .widebox, .leftbox {
    width: 100% !important;
    margin: 0 auto 10px auto;
    padding: 10px !important;
    box-sizing: border-box;
  }

  .header-bar {
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 10px;
    width: 100%;
  }

  .header-bar .button a {
    font-size: 16px;
    padding: 3px 3px;
  }

  .header-bar img {
    width: 70px;
    height: auto;
    margin-bottom: 10px;
  }

  .container {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

.container2 {
  position: relative;
}

.image2 {
  display: block;
  width: 100%;
  height: auto;
}

.overlay2 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: #2a316f;
}

.container2:hover .overlay2 {
  opacity: 1;
}

.text2 {
  color: white;
  font-size: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.floatup:hover {
  transition-duration: 0.5s;
  translate: 0px -5px;
  filter: drop-shadow(0px 5px 10px #0a051c);
}

.gridcontainer {
  display: grid;
  background-color: black;
  grid-template-columns: auto auto auto;
}

.bodybackground {
  background-color: #85DCBA;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 100% 100%;
}

.row {
  display: flex;
}

.resize {
  width: 10%;
  height: 10%;
}

.centernoresize, .center, .center2 {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.center {
  width: 50%;
}

.center2 {
  width: 150%;
  height: auto;
}

.right {
  margin-left: auto;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #000000;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 12px 16px;
  z-index: 1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.container {
  display: flex;
  flex-direction: column;
  margin-left: 20rem;
  margin-right: 20rem;
}

@media (max-width: 768px) {
  .container {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

.widebox, .sidebar, .centerbox, .buttonbox {
  margin: 10px;
  padding: 25px;
  background: white;
  border: 5px solid black;
}

.widebox {
  width: auto;
}

.centerbox {
  width: 500px;
}

.buttonbox {
  margin-left: 900px;
  margin-top: -400px;
  background: black;
  border: 5px solid green;
}

a:link, a:visited {
  color: #ADD8E6;
  background-color: transparent;
  text-decoration: none;
}

a:hover, a:active {
  color: blue;
  background-color: transparent;
}

.button {
  outline: 0;
  display: inline-block;
  color: white;
  background-color: grey;
  text-align: center;
  cursor: pointer;
  font-size: 16px;
  padding: 5px 10px;
  margin: 5px;
}

button:hover, button.active {
  background-color: #848fe6;
}

.a {
  text-decoration: none;
  font-size: 22px;
  color: black;
}

button:hover, a:hover {
  opacity: 0.7;
}

@font-face {
  font-family: 'firesans';
  src: url(/font/FiraSans-ExtraLight.otf);
}

@font-face {
  font-family: 'comfortaa';
  src: url(/font/comfortaa.ttf);
}

@font-face {
  font-family: 'amatic';
  src: url(/font/AmaticSC-Regular.ttf);
}

.amatic {
  font-family: 'amatic';
}

.comfortaa {
  font-family: 'comfortaa';
}

.firesans {
  font-family: 'firesans';
}

.rec {
  display: none;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--global-font, Arial);
  font-size: var(--global-font-size, 16px);
  color: var(--global-font-color, #000);
  padding: 20px;
  background: #f1f1f1;
  line-height: 1.5;
  letter-spacing: 0.5px;
}

.header-container {
  position: relative;
  height: auto;
  margin-bottom: 20px;
}

.display_row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
}

.header-bar {
  height: auto;
  padding: 10px;
  background: grey;
  border: 3px solid black;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 50%;
  margin: 0 auto;
}

.header-bar img {
  height: 80px;
  width: auto;
  margin-right: 10px;
}

.round-corners {
  border: 1px solid black;
  border-radius: var(--box-border-radius, 10px);
}

.website-title {
  position: absolute;
  top: 40px;
  right: 0;
}

.status-left {
  z-index: 2;
}

.leftbox {
  margin-left: auto;
  width: 45%;
  align-items: center;
  justify-content: center;
}

.imgfixer {
  align-items: center;
  justify-content: center;
  width: 100%;
}
