body {
  background-color: rgb(142, 223, 255);
  color: black;
  font-family: Verdana;
}

nav{
    display: flex;
    align-items: center;
    
    width: 50%;
}

nav > ul {
  display: flex;
  width: 100%;
  justify-content: space-around;
}

main{
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 20px;
  border: 1px solid black;
}
h1 {
  font-size: 1.3em;
}
h2 {
  font-size: 1.1em;
}
aside {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: rgb(150, 115, 145);
}

img {
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}