/* 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." */

body {
  background-image: url('ISAT_Loop.png');
  opacity: 1;
  background-color: black;
  color: antiquewhite;
  font-family: "Font Awesome 6 Free";
  font-size: 18px;
  animation: background 24s infinite linear;
}

#title {
  color:white;
  font-size: 12;
  font-weight: bold;
  position: relative;
  margin: auto;
  border: 2px solid white;
  background: black;
  max-width: 681px;
  width: 88.6%;
  padding: 5px;
  box-shadow: 5px 5px 2.5px black;
  }
#SleepySiff {
  position: absolute;
  left: 531px;
  top: 54.4px;
  z-index: 2;
  }
#main {
  color:white;
  font-size: 12;
  font-weight: bold;
  position: relative;
  margin-left: 135.8px;
  top: -105.4px;
  border: 2px solid white;
  background: black;
  max-width: 681px;
  width: 72.8%;
  padding: 5px;
  box-shadow: 5px 5px 2.5px black;
  display: inline-grid;
  }
#container {
  display: grid;
  grid-template-areas: "title" "buttons";
  padding: 100px;
  margin: auto;
  max-width: 681px;
  width:88.6%;
}

p span {
  display: block;
}

a:link {
  color: purple;
  }
a:visited {
  color: green;
  text-shadow: 2px 2px green;
  }

#buttons {
  margin-left: 32.4px;
  position: relative;
  text-align: center;
  top: 5px;
  border: 2px solid white;
  background: black;
  width: 94px;
  box-shadow: 5px 5px 2.5px black;
  display: inline-grid;
  }
#buttons img {
  width: 88px;
  position: relative;
  top: 4px;
  bottom: 4px;
  }
  
  /* ---------------------------- */
  @keyframes background {
	0% {
		background-position: top center;
	}
	100% {
		background-position: bottom right;
	}
}

@keyframes grow {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.3);
	}
	100% {
		transform: scale(1);
	}
}
