@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300&family=Roboto&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: rgb(26, 14, 51);
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
}

h1 {
  text-align: center;
  font-size: 40px;
  margin: 50px;
}

.box-cont {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-gap: 2px;
}

.box {
  width: 100px;
  border-radius: 8px;
  height: 100px;
  background-color: rgb(72, 65, 86);
  font-size: 70px;
  text-align: center;
}

.box:hover {
  background-color: rgb(125, 124, 127);
}
