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

body {
  background: black;
  color: white;
  font-family: "Open Sans", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

nav {
  position: fixed;
  top: 20px;
  right: 20px;
}
nav a {
  color: white;
  text-decoration: none;
  opacity: 0.7;
}

.container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 600px;
  align-items: center;
  gap: 20px;
  padding: 200px 10px 0;
}

h1 {
  text-transform: uppercase;
  font-size: 3rem;
}

.dots {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin: 100px 0;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 10px 10px white;
  z-index: -1;
  animation: hereTheyCome linear;
  animation-timeline: scroll();
}

p {
  color: black;
  background: white;
  padding: 20px 15px;
  font-weight: 600;
  border-radius: 2px;
  text-align: center;
}

@keyframes hereTheyCome {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(3);
  }
}/*# sourceMappingURL=styles.css.map */