html, body {
  height: 100%;
  margin: 0; /* Removes default browser margins */
  align-content: center;
}

body {
  background-image: url("/assets/images/Backgrounds/Background-Space-Adobe-AI@1.00x.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-color: black;
  background-size: cover;
  background-position-y: center;
}

.centered-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  max-width: 80vw;
  max-height: 95vh;
  margin: auto;
  position: relative; /* Ensure the pseudo-element aligns correctly */
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
.centered-content::before {
  content: "";
  position: absolute;
  top: -5px;
  right: -5px;
  bottom: -5px;
  left: -5px;
  z-index: -1; /* Place it behind the content */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
  border-radius: inherit;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.2);
  border-width: 1px;
  backdrop-filter: blur(6px);
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  color: white;
}
.centered-content header {
  width: 100%;
  flex-grow: 0;
}
.centered-content header h1 {
  margin-top: 0;
  text-align: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
  font-size: 19px;
  color: white;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
.centered-content header nav {
  background-color: #f2f2f2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 13px;
  width: 100%;
  color: black;
  height: 30px;
}
.centered-content header nav ul {
  margin-block-start: 0;
  margin-block-end: 0;
  padding: 0;
  width: 100%;
}
.centered-content header nav ul li {
  display: inline-block;
  padding-top: 6px;
  padding-right: 15px;
  padding-left: 15px;
  padding-bottom: 6px;
  color: #000000;
  cursor: pointer;
}
.centered-content header nav ul li:hover {
  background-color: #cce6ff;
}
.centered-content main {
  background-color: rgba(30, 30, 50, 0.65);
  backdrop-filter: blur(6px);
  width: 100%;
  color: white;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  max-height: 82vh;
  min-height: 50vh;
  overflow: auto;
  flex-grow: 1;
}
.centered-content main h2 {
  font-size: 26px;
  margin-bottom: 10px;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  border-bottom-color: #4caf50;
  padding-bottom: 5px;
  margin-top: 0;
}
.centered-content main h2:first-of-type {
  padding-top: 10px;
}
.centered-content main h2, .centered-content main p {
  padding-left: 10px;
  padding-right: 10px;
}
.centered-content main p {
  margin-top: 0;
  font-size: 12pt;
  line-height: 1.6;
}
.centered-content footer {
  background: #f2f2f2;
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 -2px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 13px;
  color: #111111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-grow: 0;
}
.centered-content footer p {
  text-align: right;
  width: 100%;
  padding-right: 10px;
}

#frontpage {
  display: none;
}

#setup {
  display: none;
}
#setup #setup-specs {
  display: flex;
  justify-content: flex-start;
  padding-right: 10px;
}
#setup #setup-specs .setup-specs-column {
  padding-left: 20px;
}

@media screen and (max-width: 965px) {
  #setup #setup-specs {
    flex-direction: column;
  }
  #setup #setup-specs .setup-specs-column {
    width: 95vw;
  }
}
@media screen and (max-height: 1090px) {
  .centered-content {
    min-height: 90vh;
  }
  .centered-content header h1 {
    margin-top: 0;
    padding-top: 0;
  }
  .centered-content main #setup-specs .setup-specs-column {
    max-width: 100%;
    padding-right: 15px;
  }
}

/*# sourceMappingURL=main-styles.css.map */
