h1 {
    font-family: 'Courier New', Courier, monospace;
    color:blue;
    text-align: center;
    font-size: 50px;
    
}
h2 {
        text-align:center;
    }
body {
    background-color:aquamarine;
}
button {
    background-color: #04AA6D;
  border: none;
  color: white;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  border-radius: 4px;
}
.link {
    text-align: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: rgb(1, 83, 151);
    font-size: small;
    text-decoration:none
}
h3 {
    text-align: center;
}
#gameContainer { /* Added an ID for the container */
    width: 100%;
    height: 100vh;
    display: flex; /* Use flexbox for centering */
    justify-content: center;
    align-items: center;
    position: relative; /* Needed for absolute positioning of button */
}
.game {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
#fullScreenButton { /* Style the button */
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 10px 15px;
    background-color: #4CAF50;
    color: white;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    z-index: 10; /* Ensure button is above the iframe */
}
#fullScreenButton:hover {
    background-color: #367c39;
}