@font-face {
   font-family: 'rtgame';
   src: url('fonts/Vollkorn-Black.ttf');
}
body {
  background-image: url("https://bettysgraphics.neocities.org/images/backgrounds/pattern%20571.gif");
  background-position: top right;
  background-size: 100px;
  font-family: 'rtgame';
}
a {
  color: black;
  text-decoration: none;
}
.layout {
  width: 100%;

  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.info {
  width: 100%;
  display: grid;
  grid: "sidebar body" 1fr / auto 1fr;
  gap: 8px;
}
/* Style the tab */
.tab {
}

/* Style the buttons inside the tab */
.tab button {
  background-color: #000000;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  color: #ffffff;
  margin: 5px;
  border-radius: 10px;
  font-family: Courier New;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ffffff;
  color: #000000;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ffffff;
  color: #000000;
  font-weight: bold;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 10px;
  border: 5px dotted #ffffff;
  border-top: none;
  border-radius: 20px;
  color: white;
  margin-right: 20px;
  margin-bottom: 20px;
  background-color: #000000;
}