@font-face {
  font-family: 'PokemonClassic';
  src: url('PokemonClassic.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  background: lightyellow;
  font-family: 'PokemonClassic', sans-serif;
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

a {
  text-decoration: none;
  color: inherit;
}

.parent {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  width: 90%;
  height: 90%;
  gap: 10px;
}

.pokemon, 
.menu, 
.content {
  font-size: 20px;
  color: black;
  border: 25px solid transparent;
  border-image-source: url('corner.png');
  border-image-slice: 44;
  border-image-repeat: repeat;
}

.pokemon { 
  grid-area: 5 / 1 / 6 / 2; 
  display: flex;
  justify-content: center;
  align-items: center;
} 

.menu {
  grid-area: 1 / 1 / 5 / 2;
  padding: 20px;
  overflow: hidden;
  white-space: nowrap; 
  text-overflow: ellipsis;
}

.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu li {
  margin: 10px 0;
  position: relative;
}

.menu li:hover::before {
  content: "▶";
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  color: black;
}

.content {
  grid-area: 1 / 2 / 6 / 6;
  padding: 50px;
}

.content ul {
  list-style: disc;
  margin-left: 20px;
  padding: 0;
}
