.content-wrap {
  size: 100%;
  min-height: calc(100vh - 50px);
  height: calc(100vh - 50px);
}

header {
  height: 30px;
  background-color: rgb(112, 24, 24);
  padding: 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
header h1 {
  font-size: 1em;
}
header a {
  background-color: red;
  border-radius: 5px;
  border: none;
  height: 20px;
}

body {
  margin: 0;
  padding: 0;
}

.main-info {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-area: topcenter;
}
.main-info h1 {
  font-size: 5em;
  margin: 0;
  text-align: center;
}

.main-screen {
  height: calc(100vh - 200px);
  display: flex;
  justify-content: center;
  grid-area: playercanvasgrid;
}

.game-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  margin-bottom: 50px;
}
.game-buttons button {
  border: none;
  height: 50px;
  width: 300px;
  border-radius: 10px;
}

#login {
  border: none;
  background-color: gray;
  border-radius: 30px;
}
#login form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#login form button {
  height: 50px;
  border-radius: 25px;
  border: none;
  font-size: 1em;
}
#login form label {
  font-size: 1.5em;
  text-align: center;
}
#login button {
  height: 50px;
  border-radius: 25px;
  border: none;
  font-size: 1em;
  width: 100%;
  margin-top: 10px;
}
#login h2 {
  text-align: center;
}

#signup {
  border: none;
  background-color: gray;
  border-radius: 30px;
}
#signup form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#signup form button {
  height: 50px;
  border-radius: 25px;
  border: none;
  font-size: 1em;
}
#signup form label {
  font-size: 1.5em;
  text-align: center;
}
#signup button {
  height: 50px;
  border-radius: 25px;
  border: none;
  font-size: 1em;
  width: 100%;
  margin-top: 10px;
}
#signup h2 {
  text-align: center;
}

#createRoomDialog {
  text-align: center;
}
#createRoomDialog .text-input {
  border: 1px solid black;
}
#createRoomDialog form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}
#createRoomDialog form button {
  height: 50px;
  border-radius: 25px;
  border: none;
  font-size: 1em;
}
#createRoomDialog form label {
  font-size: 1.5em;
  text-align: center;
}
#createRoomDialog button {
  height: 30px;
  border-radius: 25px;
  border: none;
  font-size: 1em;
}

#joinRoomDialog {
  text-align: center;
}
#joinRoomDialog .text-input {
  border: 1px solid black;
}
#joinRoomDialog form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}
#joinRoomDialog form button {
  height: 50px;
  border-radius: 25px;
  border: none;
  font-size: 1em;
}
#joinRoomDialog form label {
  font-size: 1.5em;
  text-align: center;
}
#joinRoomDialog button {
  height: 30px;
  border-radius: 25px;
  border: none;
  font-size: 1em;
}

.text-input {
  width: 30vw;
  border-radius: 25px;
  height: 50px;
  font-size: 1em;
  border: none;
  padding-left: 20px;
}/*# sourceMappingURL=style.css.map */