/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

#pageTitle {
  text-align: center;
}

#centeredContent {
  text-align: center;
}

#myImage {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

body {
  background-color: black;
  color: #DA0b85;
  font-family: Courier New;
  padding: 0 10px;
  background-image: url('background.png');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

/* unvisited link */
a:link {
  color: darkmagenta;
  text-decoration: none;
  background-color: orchid;
}

/* visited link */
a:visited {
  color: darkviolet;
  text-decoration: none;
  background-color: orchid;
}

/* mouse over link */
a:hover {
  color: mediumvioletred;
  text-decoration: underline;
  background-color: violet;
}

/* selected link */
a:active {
  color: white;
  text-decoration: underline;
  background-color: violet;
}

ul li::before {
  content: none;
}

h1 {
  text-align: center;
}

.box_center {
  flex: 3;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: black;
  margin: 5px;
  border: 1px solid;
}

.box_right {
  flex: 1;
  background-color: #15010D;
  margin: 5px;
  border: 1px solid;
  padding: 3px;
  position: relative;
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.box_left {
  flex: 1;
  background-color: #15010D;
  margin: 5px;
  border: 1px solid;
  padding: 3px;
  position: relative;
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.container {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

iframe {
  position: absolute;
  bottom: 5px;
  width: 100%;
  height: 90%;  /* Adjust this as needed */
}

.responsive-gif {
  max-width: 100%;  /* Makes sure it doesn't exceed the container width */
  height: auto;     /* Maintains aspect ratio */
  display: block;   /* Avoids inline spacing issues */
  margin: 0 auto;   /* Centers the GIF */
}

@media (max-width: 768px) {
  body {
    background-image: url('background.png');
  }
  .container {
    flex-direction: column;
    padding: 0 10px;
  }
  .box_center {
    order: 1;
  }
  .box_left {
    order: 2;
    flex: 1;
    height: auto; /* Adjust height as needed */
    min-height: 150px; /* Set a minimum width for the side boxes */
  }
  .box_right {
    order: 2;
    flex: 1;
    height: auto; /* Adjust height as needed */
    min-height: 600px; /* Set a minimum width for the side boxes */
  }
}