* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  main {
    text-align: center;
  }
  html {
    scroll-behavior: smooth;
}


body {
  display: grid;
  place-items: center;   /* centers the board */  
  margin: 0;
  background-image: url(Untitled-1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

h1 {
  padding-top: 5rem;
  color: black;
  padding-bottom: 3rem;
  font-size: 3rem;
}
h2 {
  padding-top: 3rem;
  color: black; 
  font-size: 6rem;
}
.board {
  display: grid;
  grid-template-columns: repeat(3, 150px);
  grid-template-rows: repeat(3, 150px);
  gap: 5px;
  padding-bottom: 3rem;
}

.cell {
  width: 9rem;
  height: 9rem;
  background: rgb(126, 126, 126);
  border: 2px solid #444;
  display: grid;
  place-items: center;
  font-size: 2rem;
  font-weight: bold;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

#message {
  max-width: 30vmin;

}

p {
  color: white;
}

#status {
  font-size: 2rem;
  font-weight: bold;
}
    #replay {
      padding: 1rem;
      font-size: 1em;
      cursor: pointer;
    }


p {
  padding-bottom: 3rem;
}


/* .cloud {
  background: white;
  border-radius: 100px;
  position: absolute;
  opacity: 0.9;
}

.cloud:before,
.cloud:after {
  content: '';
  background: white;
  border-radius: 100px;
  position: absolute;
}

/* Specific cloud styling for size and position */
/* .cloud {
  width: 150px;
  height: 50px;
  top: 20%;
  left: 10%;
}

.cloud:before {
  width: 80px;
  height: 80px;
  top: -30px;
  left: 20px;
}

.cloud:after {
  width: 100px;
  height: 100px;
  top: -50px;
  right: 20px;
}

/* Adjust sizes and positions for other clouds */
/* .cloud-2 {
  width: 12.5rem;
  height: 3.75rem;
  top: 40%;
  left: 80%;
  transform: translateX(-50%);
}

.cloud-2:before {
  width: 5.625rem;
  height: 5.625rem;
  top: -40px;
  left: 30px;
}

.cloud-2:after {
  width: 110px;
  height: 110px;
  top: -60px;
  right: 30px;
} */

/* Add more cloud styles as needed */

/* .cloud-3 {
  width: 12.5rem;
  height: 3.75rem;
  top: 90%;
  left: 30%;
  transform: translateX(-50%);
}

.cloud-3:before {
  width: 5.625rem;
  height: 5.625rem;
  top: -40px;
  left: 30px;
} */
a {
  padding-bottom: 3rem;
  font-size: 2rem;
  text-decoration: none;
  color: seagreen;
}


