body {
  display: flex;
  flex-direction: column;
  background-color: rgb(254, 251, 246);
  height: 100vh;
  margin: 0;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

h1 {
  text-align: center;
  font-family: 'Audiowide', cursive;
  font-size: 48px;
  color: rgb(228, 90, 51);
  margin: 30px;
}

button {
  font-family: 'Audiowide', cursive;
  font-size: 20px;
  background-color: rgb(228, 90, 51);
  color: rgb(255, 255, 255);
}

button:hover {
  background-color: rgb(247, 143, 115);
}

main {
  flex: 1;
  margin: 0 30px 30px;
}

h2 {
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 28px;
  font-weight: bold;
  color: rgb(73, 68, 68);
  margin-bottom: 16px;
}

.emphasis {
  color: rgb(228, 90, 51);
}

.player,
.computer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.profile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 250px;
}

.name {
  font-family: 'Orbitron', sans-serif;
  font-size: 20px;
  font-weight: bolder;
  color: rgb(228, 90, 51);
}

.profile .picture {
  height: 200px;
}

.scoreboard {
  font-family: 'Orbitron', sans-serif;
  font-size: 20px;
}

.rps-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-family: 'Orbitron', sans-serif;
  background-color: rgb(255, 255, 255);
  border: 0.5px solid rgb(43, 42, 42);
  box-shadow: 5px 5px 8px rgb(43, 42, 42);
  transition: 0.30s;
  width: 225px;
  height: 250px;
  padding: 20px;
  margin: 30px;
  cursor: pointer;
}

img.weapon {
  width: 150px;
}

.description {
  font-family: 'Open Sans', sans-serif;
  text-align: center;
}

.weapon-selected {
  transform: scale(1.1);
}

footer {
  text-align: center;  
  font-family: 'Roboto Mono', monospace;
  background-color: rgb(228, 90, 51);
  color: rgb(255, 255, 255);
  padding: 16px;
}