head {
  background-color: #f5f5f5;
  color: black;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background-color: #f5f5f5;
  color: black;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
}

legs {
  text-align: center;
}

.banner {
  position: relative;
  height: 120px;
  background-image: url("banner.png"); /* screenshot tipo juego */
  background-size: cover;
  background-position: center;
  border: 2px solid #333;
}

/* oscurece un poco el fondo como en Roblox */
.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
}

.overlay {
  position: relative;
  z-index: 1;
  padding: 10px;
  color: white;
}

.logo {
  font-size: 48px;
  color: white;
  text-shadow:
    3px 3px 0 red,
    -3px -3px 0 red;
}

/* botón amarillo */
.cta {
  position: absolute;
  right: 20px;
  top: 30px;
  z-index: 2;

  background: #ffd54a;
  border: 2px solid #333;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
}

.cta:hover {
  background: #ffcc00;
}

.banner {
  text-align: left;
}

.msg {
  position: top;
  height: 50px;
  background-size: cover;
  background-position: center;
  border: 1px solid #333;
  background: red;
}
