@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: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1 {
  text-align: center;
  font-size: 30px;
  margin: 50px;
  font-weight: 900;
}

.box-container {
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  grid-template-rows: repeat(15, 1fr);
  grid-gap: 5px;
}

.box {
  width: 18px;
  height: 18px;
  border-radius: 2px;
  box-shadow: 0 0 3px rgb(211, 207, 207);
  transition: 100ms ease-in-out;
}
