* {
  box-sizing: border-box;
}
img{
  height:100vh;
  width:100vw;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-image:url(backgroundimage.jpg);
  background-image-height:100vh;
  background-image-width:100vw;
  color: rgb(76, 0, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
  margin: 0;
  text-underline-position: initial;
}

h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 6px red (0, 0, 0, 0.3);
}

.board {
  display: grid;
  grid-template-columns: repeat(3, 100px);
  grid-template-rows: repeat(3, 100px);
  gap: 10px;
}

.cell {
  background: #ffffff;
  border:2px solid red;
  border-radius: 30px;
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.cell:hover{
  background:aquamarine;
  transform: scale(1.05);
  
  
}

.status {
  margin-top: 25px;
  font-size: 1.5rem;
  background-color: #f5eb2ea7;
  color:black;
  padding: 10px 20px;
  border-radius: 8px;
  backdrop-filter: blur(4px);
}

.reset-btn {
  margin-top: 15px;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  background: #FF8C40;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: background 0.2s ease;
}

.reset-btn:hover {
  background: #e73370;
}

