@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Geo:ital@0;1&display=swap');
/* ----------------------------------------------------set up file------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* Font stuff */
  font-family: "Geo", sans-serif;
  font-size: 15pt;
  font-weight: 600;
}
:root {
  --background-color: rgba(0, 10, 33, 1.00);
  --primary-color: rgba(4, 174, 242, 1);
  --secondary-color1: rgba(255, 191, 0, 1);
  --secondary-color2: rgba(2, 62, 114, 1);
  --secondary-color3: rgba(1, 31, 94, 1);
  --text-color: rgba(0, 0, 0, 1);
}
body {
  background-image: url("../images/star.gif");
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: var(--background-color);
}
/* --------------------------------------------------------Div's------------- */
#bartop {
  margin: 0;
  height: 50px;
  width: 100%;
  position: fixed;
  top: 0px;
  text-align: center;
  background-color: var(--primary-color);
}
#main {
  margin: 0 auto;
  width: 1500px;
  padding: 0;
}
#top {
  margin: 0;
  margin-top: 0px;
  height: 200px;
  text-align: center;
  background-image: url("../images/spacebanner.gif");
}
#barmid {
  margin: 0;
  height: 20px;
  text-align: center;
}
#containerMid {
  display: flex;
}
#middle {
  margin: 0;
  height: auto;
  width: 75%;
  text-align: left;
  background-color: var(--primary-color);
}
#navbar {
  display: flex;
  text-align: center;
  margin: 0;
  height: 320px;
  width: 17.5%;
  border: 5px solid var(--secondary-color2);
  background-color: var(--primary-color);
}
/* ---------------------------------------------------------Logic for html stuff------------- */
p {
  margin: 15px;
  font-size: 18pt;
}
hr {
  border: none;
  height: 5px;
  margin: 0 auto;
  background-color: rgba(1, 31, 94, 1);
}
h1 {
  color: white;
  animation: fadein 1.5s ease forwards;
  font-size: 50px;
  padding: 20px;
  padding-left: 40px;
}
h2 {
  color: white;
  font-size: 40px;
  padding: 10px;
}
h3 {
  color: white;
  font-size: 40px;
  padding: 10px;
}
a {
  color: var(--secondary-color3);
  text-decoration: none;
  font-size: 15pt;
}
a:hover {
  text-decoration: underline;
  text-decoration-color: black;
  color: black;
}
a:visited {
  color: rgba(0, 23, 74, 0.75);
}
ul {
  list-style: none;
  padding: 30px;
}
ul li {
  padding: 10px 50px;
  margin: 25px 0;
  border-radius: 4px;
  border: 2px solid black;
  background: rgba(2, 62, 114, 0.5);
}
ul li:hover {
  background: var(--secondary-color1);
  transform: translateY(-5px);
}
iframe {
  display: flex;
  margin-left: 20px;
  padding: 5px;
  border: 2px solid rgba(1, 31, 94, 1);
}
.scroll-x {
  display: flex;
  gap: 20px;
  padding: 10px;
  border: 5px solid rgba(1, 31, 94, 1);
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 10px;
}
.scroll-x::-webkit-scrollbar {
  height: 10px;
}
.scroll-x::-webkit-scrollbar-track {
  background: rgba(1, 31, 94, 1);
  border-radius: 10px;
}
.video-row iframe {
  padding: 5px;
  border: 2px solid rgba(1, 31, 94, 1);
}
h1 {
  color: white;
  animation: fadein 1.5s ease forwards;
  font-size: 40pt;
  padding: 20px;
}
h3 {
  color: white;
  animation: fadein 1.5s ease forwards;
  font-size: 30pt;
}
h4 {
  color: white;
  font-size: 25pt;
  padding-left: 15px;
}