@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");

* {
  box-sizing: border-box;
}

/* Custom Scrollbar */
/* width */
::-webkit-scrollbar {
  width: 10px;
}
/* Track */
::-webkit-scrollbar-track {
  background: #7c7c7c;
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: rgb(65, 65, 65);
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgb(54, 54, 54);
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #111;
  color: #fff;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
}
.container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 30rem;
}

.square {
  background-color: #1d1d1d;
  box-shadow: 0 0 2px #000;
  height: 0.8rem;
  width: 0.8rem;
  margin: 0.15rem;
  transition: 2s ease;
  /* border-radius: 5px; */
}

.square:hover {
  transition-duration: 0s;
}
