/* Game board and text not responsive yet*/

body {
  background-color:white;
  font-family: 'Permanent Marker', cursive;
  text-align: center;
  margin-top: 40px;
  }
  
table {
    margin-right: center;
    margin-left: center;
    margin: 0 auto;
    border-spacing: 0;
    border-collapse: collapse;
  }
  

h1 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 2vw;
    color: black;
  }
  
td {
    width: 8vw;
    height: 8vw;
    text-align: center;
    font-size: 300%;
    border: black solid 3px;
    color: black;
  }

h2 {
  text-align: center;
  font-size: 2vw;
  color: #4c2c92;
}  

button {
  font-family: 'Permanent Marker', cursive;
  font-size: 18px; 
  padding: 10px 20px;
  background-color: #343434;
  color: white; 
  border: none; 
  border-radius: 8px; 
  cursor: pointer; 
  transition: background-color 0.3s ease; /
}

button:hover {
  background-color: #3d3d3d; 
}

#homeButton {
  background-color: #2d2d2d; 
}

#homeButton:hover {
  background-color: #4e4e4e; 
}

#resetButton {
  background-color: #292828; 
}

#resetButton:hover {
  background-color: #3a3a3a; 
}

#secretVictoryImage {
  position: fixed; 
  top: 0;
  left: 0;
  width: 80%; 
  height: 80%; 
  object-fit: cover; 
  z-index: 100; 
  display: none; 
}