@import url(https://fonts.bunny.net/css?family=inter:500,600,700|lexend-deca:500,600,800,900);

body {
  font-family: 'Lexend Deca', sans-serif;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #333;
}

#gameAreaContainer {
  position: relative;
  width: 400px; /* Adjust width as needed */
  height: 600px; /* Adjust height as needed */
  margin: auto;
}

#gameArea {
  background-color: #fff;
  border: 2px solid #000;
}

input[type="button"] {
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin-top: 20px;
  cursor: pointer;
}

#scoreDisplay {
  font-family: 'Lexend Deca', sans-serif;
  font-size: 27px;
  color: #FF0000;
}

.mdl-textfield {
  margin: 20px;
}

.mdl-textfield .mdl-textfield__input {
  border: none;
  background-color: #fff;
  color: #333;
  font-size: 16px;
  padding: 10px;
}

#logo {
  width: 200px;
  height: auto;
  /* margin-bottom: 20px; */
  user-select: none;
}
.hidden {
  display: none;
}

#instructions {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  color: #fff;
  margin-top: 20px;
}

#controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#controls .mdl-button {
  margin: 0;
  padding: 0;
}