* {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-weight: 500;
}

body {
  background-color: #D7D780;
  
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 10px;
}

canvas {
  display: block;
  border-radius: 15px;
}

ul {
  list-style-type: none;
  width: 790px;
  
  margin-top: 10px;
  padding: 5px 0 5px 10px;
  border-radius: 15px;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  
}

li {
  background-color:  transparent;
  border-radius: 30px;
  transition: .3s all ease;
}

li.active, li:hover{
  background-color:  #8080D7;
}

nav {
  width: 800px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

a {
  display: block;
  padding: 8px;

  text-decoration: none;
  color: #F5F5DC ;
}

.left-arrow {
  display: flex;
  flex-direction: row;
  border-radius: 10px;
}

.arrow {
  display: inline-block;

  border: solid #F5F5DC;
  border-width: 0 3px 3px 0;
  padding: 3px;
  
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}