:root {
  --background: #fbfacd;
  --box: #d09cfa;
  --heading1: #cb1c8d;
}

* {
  background: var(--background);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h3 {
  text-align: center;
  font-size: 70px;
  margin-bottom: 0;
  color: var(--heading1);
}

h4 {
  text-align: center;
  font-size: 150%;
  color: var(--heading1);
}

.container {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.game {
  width: 60vw;
  display: flex;
  flex-wrap: wrap;
  font-size: 100px;
  margin-top: 40px;
}

.box {
  height: 20vh;
  width: 20vw;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
}

button {
  background: transparent;
  box-sizing: border-box;
  border-radius: 0.6rem;
  align-self: center;
  font-size: 27px;
  font-weight: 300;
  margin: 20px;
  padding: 10px 20px;
  text-align: center;
  color: rgb(1, 4, 7);
  font-family: Pangolin;
  font-weight: bold;
  cursor: pointer;
  border: 2px solid rgb(209, 15, 122);
}

.restart:hover {
  box-shadow: 0 6px 7px -1px #0d0c0c;
  transform: translateY(-15%);
}
