/* <link rel="stylesheet" type="text/css" href="myStyle.css">*/

h1 {
  color: white;
  text-align: center;
  font-family: "Press Start 2P", monospace;
  border-bottom: 2px solid cyan;
  text-shadow: 2px 2px darkcyan;

}
h2 {
  color: white;
  text-align: center;
  font-family: "VT323", monospace;
}
h3 {
  color: white;
  text-align: center;
  font-family: "VT323", monospace;
  margin-top: 0;
  margin-bottom: 0;
}
body {
  margin: 0;
  color: ;
  text-align: center;
  color: white;
  font-size: 20px;
  /*text-align: center;*/
  padding: 10px 15px;
  font-family: cursive;
}
/*p {
  color: white;
  font-size: 20px;
  padding: 10px 15px;
  font-family: cursive;
}*/
a {color: #FF4FD8;}
a:hover {color: #BC13FE;}

.title {
  display: flex;
  align-items: center; 
  justify-content: center;
  gap: 20px; 
}

.timeline{
  position: relative;
  max-width: 1000px;
  margin: 100px auto;
}
.container {
  position: relative;
  width: 50%;
  padding: 10px 50px;
  box-sizing: border-box;
  /*background: #fff;*/
}
.info-box{
  padding: 20px 50px;
  position: relative;
  border-radius: 15px;
  font-size: 15px;

  background: rgba(10, 50, 70, 0.75);
  border: 1px solid #FF4FD8;
  border-radius: 15px;
  box-shadow: 0 0 15px #FF4FD8;
  backdrop-filter: blur(2px);
}
.right-box{
  left: 50%;
}

.content {
  box-sizing: border-box;
  width: 70%;
  margin: auto; /* centers it */
  margin-top: 20px;
  border-radius: 15px;
  padding: 10px 30px;

  /*chatgpt helped me decide a background and border color combo that went with the cityscapes*/
  background: rgba(10, 50, 70, 0.75);
  border: 1px solid #FF4FD8;
  border-radius: 15px;
  box-shadow: 0 0 15px #FF4FD8;
  backdrop-filter: blur(2px);

}
.info {
  margin-bottom: 100px;
}
.nav-arrows {
  position: fixed;
  border: none;

  cursor: pointer;
  appearance: none;
  background-color: inherit;
  color: #BC13FE;
  font-family: "Press Start 2P", monospace;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-arrows:hover .arrow{
  transform: rotate(360deg);
}
.arrow{
  width: 100px;
  height: 100px;
  transition: transform 0.7s ease-in-out;
}
/* positioning the arrows */
.top-right {
  right: 10px;
  top: 20px;
}
.top-left {
  left: 10px;
  top: 20px;
}
.bottom-left{
  left: 10px;
  bottom: 15px;
}
.bottom-right{
  bottom: 15px;
  right: 10px;
}
.middle-left{
  top: 200px;
  left: 10px;
}

.text-button{
  padding: 20px 20px;
  position: relative;
  border-radius: 15px;
  border: 1px solid #FF4FD8;
  color: #BC13FE;

  font-family: "Press Start 2P", monospace;
  display: flex;
  flex-direction: column;
  align-items: center;
}
ul {
  list-style-type: none;
  padding: 0;  
  margin: 0;
}

.gifs{
  position: fixed;
  width: 150px;
  height: auto;

  z-index: 9999;/*places it obove everything else*/
  pointer-events: none; /* lets you click through it */
}
.left-gif{
  top: 50px;
  left: 20px;
}
.bottom-gif{
  bottom: 0px;
  left: 500px;
}
.right-gif{
  top: 200px;
  right: 20px;
}
.middle-gif{
  top: 150px;
}
