/* 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:url("gifs/background.gif");
  color: white;
  font-family: 'Trebuchet MS';
}

h1 {
  text-align: center;
}  

.center {
  margin:0 auto;
  display:block;
}

.round {
  border-radius: 8px;
}

.icons {
  margin-left:5.2%;
  transition: transform 0.3s ease;
  transform: translateX(0px);
  width:6%;
}

.move-up:hover {
  transform: translateY(-20px);
}

.centered {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index:1;
  text-shadow: 0 0 10px black, 0 0 10px black, 0 0 10px black, 0 0 10px black, 0 0 10px black, 0 0 15px black;
  font-size:170%
}

.blinkies {
  width:19%;
  margin:5px
}

.container {
  display: flex;
  background-color: rgb(255, 0, 255);
}

.container div {
  background-color: #ffffff;
  margin: 5px;
  padding: 15px;
  margin-left: auto;
  margin-right: auto;
  font-size: 20px;
  color: black;
  flex: 130px 0 0; 
  text-align:center;
}

.press-start-2p-regular {
  font-family: "Press Start 2P", system-ui;
  font-weight: 400;
  font-style: normal;
}