body {
  padding: 0;
  margin: 0;
}


a {
  text-decoration: none;
  color: var(--color2);
}

:root {
  --color1: #e2eafa;
  --color2: #09a0df;
}





#nav-bar ul {
  display: flex;
  flex-direction: row;
  gap: 5px;
}



canvas {
  z-index: 1;
  height: 100%;
  width: 100%;
}



ul {
  list-style-type: none;
}



#header {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  position: fixed;
  width: 99vw;
}

#header img {
  padding-left: 10px;
  width: 200px;
}

#video {
  width: 400px;
  height: 300px;
  max-width: 430px;
  border-radius: 10px;
  object-fit: cover;
  flex-grow: 2;
}

#header ul {
  display: flex;
  justify-content: space-around;
  width: 30vw;
}

.image {
  position: fixed;
  top: 20%;
  box-sizing: border-box;
  left: 37%;
}

img {
  width: 500px;
}

li {
  font-size: 28px;
}


@media screen and (max-width: 400px) {
  nav {
    transform: translate(-150%, 0%);
  }

  img {
    transform: translate(-40%, 10px);
  }
}