
body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background-image: url('https://assetstorev1-prd-cdn.unity3d.com/package-screenshot/6bf83e1e-c778-45cd-9bd3-4ffc0d4638e4_scaled.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}


.display {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  max-width: 95vw;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .display {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}


.con {
  width: 90vmin;
  height: 90vmin;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(8, 1fr);

  background-color: black;
  border : 3px solid black;
  border-radius: 6px;

  
}


section {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 40px 40px;
  background-color: black;
  
}

section:hover {
  border: 2px solid rgba(255, 255, 255, 0.8);
}


.right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

button {
  color: rgb(217, 239, 255);
  background-color: rgb(0, 0, 0 , 0);
  border: 2px solid rgb(10, 0, 0);
  box-shadow: 1px 1px 1px 1px white;
  border-radius: 5px;
  height: 40px;
  width: 140px;
  font-size: 1rem;
  transition: all 300ms ease;
}

button:hover {
  box-shadow: 0 0 5px 1px white;
}

button:active {
  transform: scale(0.97);
}



