* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
h1 {
  font-size: xx-large;
  color: orange;
  align-content: center;
}

.container {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}

#header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  width: 50%;
  height: 13%;
  margin: 10px 0;
  font-family:Arial, Helvetica, sans-serif;
  font-weight: 'semi-bold';
}

.title-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 70%;
}

.information {
  display: flex;
  justify-content: space-between;
  width: 80%;
}

.game {
  width: 45%;
  height: 75%;
}

.top-part{
  display: flex;
  flex-direction: row;
  height: 70%;
  align-items: end;
  justify-content: space-between;
}

.board {
  width: 480px;
  height: 100%;
  background-color: greenyellow;
  display: flex;
  align-items: end;
  justify-content: end;
  border-radius: 10px;
  position: relative;
  box-shadow: 1px 1px 2px #000000
}

.board-card {
  position: absolute;
  width: 60px;
  height: 100px;
}

.card{
  width: 120px;
  height: 170px;
  background-color: rgb(121, 121, 185);
  display: flex;
  align-items: end;
  justify-content: end;
  border-radius: 10px;
  position: relative;
  box-shadow: 2px 2px 4px #000000
}

div span{
  margin-right: 5px;
  margin-bottom: 5px;
}

.bottom-part{
  display: flex;
  flex-direction: row;
  height: 30%;
  align-items: center;
  justify-content: space-between;
}

button {
  display: inline-block;
  text-align: center;
  width: 120px;
  height: 30px;
  background-color: #2164ff;
  color: #fff;
  border: none;
  border-radius: 5px;
  margin-top: 30px;
  cursor: pointer;
}

.modal {
  display: none; /* oculto */
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);

}

.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  border-radius: 4px;
  width: 80%;
  max-width: 500px;
  position: relative;
  text-align: center;
  font-family:Arial, Helvetica, sans-serif;
}

.closeModal {
  color: #aaa;
  font-size: 35px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.closeModal:hover,
.closeModal:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
