body {
  background-color: aliceblue;
  color: black;
  font-family: "Crimson Pro", serif;
  display: flex;
  flex-direction: column;
  height: 100vh;
  margin-left: 30px;
  font-weight: 500;
  margin-bottom: 20px;
}

.container {
    width: 100vw;
    display: grid;
    grid-template-columns: 30% 60%;
    gap: 20px 40px;
}

img {
    width: auto;
    height: 200px;
    border-radius: 0;
    padding: 10px;
}

h1 {
    margin-left: 10px;
    font-family: "Kalnia", serif;
}

nav {
    margin-top: 10px;
    display: flex;
    float: right;
}

nav li {
    margin-top: 5px;
    padding: 5px 10px;
}

nav li a{
    text-decoration: none;
    color: black;
    padding: 5px 10px;
    font-size: 18px;
    letter-spacing: 5px;
}
nav li a:hover{
    color: rgb(255, 0, 0);
}

ul, nav {
    font-weight: 500;
    list-style-type: none;
}

p, h2 {
    margin-left: 15px;
}

p {
    font-size: 18px;
}

h2 {
    margin-top: 40px;
    font-size: 18px;
    color: rgb(255, 120, 120);
}

.pokeball {
    width: 20px;
    height: 20px;

}

ul li img {
    padding: 0px;
    margin-right: 5px;
    width: 25px;
    height: 25px;
    object-fit: cover;
    object-position: bottom right;
}

ul li {
    margin-top: 10px;
}


@keyframes wave-more {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(1.5deg);
  }
}

