* {
  box-sizing: border-box;
}

body {
  font-family: Arial;
  background-image: url('backgrounds/voidcat_background.png');
  background-size: 250px 250px;
  background-color: #000000;
  background-repeat: repeat;
  animation: diagonal-pan 7.5s linear infinite;
  
}

@keyframes diagonal-pan {
  0% {
    background-position: 0 0 ;
  }
  100% {
    background-position: 0px 250px;
  }
}

.navbox {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  border: 3px solid #000000;
  border-radius: 10px;
  margin: auto;
  margin-bottom: 5px;
  width: 55%;
  
}

.navbuttons {
  display: flex;
  justify-content: space-around;
  margin: 0px;
  overflow:scroll;
  text-align: center;

}

.navbuttons button {
  background-color: transparent;
  color: tomato;
  border-color: transparent;
  font-weight: bold;
  cursor: pointer;
}

.navlink {
  
  font-size: 20px;
  border: 3px solid #000000;
  border-radius: 8px;
  width: 150px;  
  padding: 8px;
}



.container {
  background-color: rgba(0, 0, 0, 0.5);
  color: tomato;
  margin: 0 auto;
  padding: 10px;
  width: 76%;
  
  min-width: 600px;
  height: 1000px;
  border: 4px solid #000000;
  border-radius: 10px;
}


.mycharacter {
  background-color: rgba(0, 0, 0, 0.25);
  color: tomato;
  margin: auto;
  border: 3px solid #000000;
  border-radius: 15px;
  padding: 5px;
  float: right;
  margin-left: 10px;
  margin-top: 10px;
}


.thing1 {
  background-color: rgba(0, 0, 0, 0.25);
  color: tomato;
  margin: auto;
  width: 35%;
  border: 3px solid #000000;
  border-radius: 15px;
  padding-left: 15px;
  padding-right: 15px;
  float: left;
  margin-right: 15px;
  margin-top: 10px;

}

.thing1 li {
  padding-top: 2.5%;
  padding-bottom: 2.5%;
  font-size: 18px;

}




/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .leftcolumn, .rightcolumn {
    width: 100%;
    padding: 0;
  }
}