body {
  background-color: black;
  color: white;
  font-family: 'Lucida Console', 'Times New Roman';
  font-size: 2.5vmin;
}

button {
  background-color: rgb(125, 125, 125);
  border-style: solid;
  border-width: 1px;
  border-radius: 15%;
  border-color: white;
  color: white;
  padding: 10px;
}

button:hover {
  background-color: rgb(150, 150, 150);
}

button:active {
  background-color: rgb(100, 100, 100);
}

#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -900;
}

.homepage {
  background-image: url(/Art/bgweegee.gif);
  background-attachment: fixed;
  background-size: cover;
  background-color: rgba(75, 75, 75, 0.5);
  height: 100vh;
  padding: 0;
  margin: 0;
}

.menu {
  background-image: url(/Art/bg.png);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 125vmin 100%;
  padding-bottom: 20px;
}

.header {
  text-align: center;
  margin: auto;
  max-width: 45%;
  padding: 10px;
}

.header h2 {
  font-size: calc(5px + 1vw);
}

.header h3 {
  font-size: calc(2px + 0.9vw);
}

#logo {
  min-width: 200px;
  min-height: 100px;
  max-width: 25vw;
  max-height: 25vw;
}

#group-photo {
  display: block;
  position: static;
  margin: auto;
  min-width: 325px;
  max-width: 60%;
  max-height: 60%;
}

#comic {
  border-style: solid;
  border-color: rgba(75, 75, 75, 0.5);
  max-width: 80%;
}

.bar {
  background-color: rgba(50, 50, 50, 0.25);
  border-style: groove;
  border-radius: 10px;
  border-color: rgba(75, 75, 75, 0.5);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  min-width: 350px;
  max-width: 55%;
  max-height: 55%;
  padding: 10px;
}

.bar ul {
  list-style-type: none;
}

.bar li {
  padding: 2px;
  display: inline;
}

.img-btns {
  margin-left: auto;
  margin-right: auto;
  min-width: 200px;
  max-width: 60%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 5px;
  align-content: center;
}

.img-btn {
  background-color: rgb(75, 75, 75);
  display: block;
  align-items: center;
  min-width: 70px;
  min-height: 70px;
  max-width: 8vw;
  height: fit-content;
  padding: 0.5vw;
  border-style: solid;
  border-width: 1px;
  border-color: white;
  font-size: 1vw;
  margin: auto;
}

.img-btn p {
  text-align: center;
  min-width: 60px;
  width: 8vw;
}

.img-btn img {
  aspect-ratio: 1;
  min-width: 60px;
  min-height: 60px;
  width: 8vw;
  height: 8vw;
  border-style: solid;
  border-width: 1px;
  border-color: white;
  margin: auto;
  font-size: 1vw;
}

.img-btn:hover {
  border-color: rgb(175, 175, 175);
}

.section-divider {
  color: grey;
  max-width: 25%;
}

.backbtn {
  text-align: center;
  padding: 10px;
}

a {
  color: lightskyblue;
}

a:hover {
  color: lightblue;
}

a:active {
  color: deepskyblue;
}