@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300&family=Roboto&display=swap");

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #100d38;
  color: white;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1 {
  text-align: center;
  font-size: 30px;
  margin: 40px;
  font-weight: 900;
}

.dot-container {
  display: grid;
  grid-template-columns: repeat(15, 1fr);
  grid-template-rows: repeat(15, 1fr);
  grid-gap: 18px;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: white;
  transition: 100ms ease-in-out;
  cursor: pointer;
  transition: 300ms ease-in-out;
}

.grow {
  transform: scale(2);
}

button {
  font-size: 20px;
  margin: 30px;
  background-color: rgb(91, 88, 88);
  color: white;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
}

button:active {
  transform: scale(1.06);
}
