html, body {
  margin: 0;
  padding: 0;
}

canvas {
  display: block;
}

.anton-regular {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}

p{
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}

h1{
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}
div{
  width: 80%;
  height: 100%;
  margin: auto;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
  align-items: left; /* Vertically centers the content */
  height: 100vh; /* Example height for the container, e.g., full viewport height */
}

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

a{
  text-decoration: none;
  color: black;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}
a:hover{
  color: rgb(88, 88, 88);
}

.horizontal-list {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
  gap: 18px;
}
