.title {
  color: white;
  text-shadow: 0px 5px black;
  background: black;
  padding: 10px;
  border: 3mm gray groove;
  border-radius: 6mm;
  flex: 1;
}

#alien-container {
  position: relative;
  width: fit-content;
  flex: 1;
}

#alien-head {
  position: relative;
  bottom: -60%;
  z-index: -1;
  right: 13%;
}

#alien-hand {
  position: absolute;
  bottom: -40%;
  right: 9%;
}

#title-area {
  display: flex;
  position: relative;
  padding: 20px;
  width: 100%;
  max-width: 1000px;
  gap: 10px;
  box-sizing: border-box;
}

@media(max-width: 768px) {
  #alien-container {
    display: none;
  }
}