body {
  background-image: url("/assets/images/earth.gif");
  background-color: #cccccc;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
}

#content {
  width: 50%;
  height: 50%;

  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  background-color: blue;

  border: 10px solid transparent;
  padding: 15px;
  border-image: url("/assets/images/flashingLight.gif") 40% stretch;
}

#content p {
  color: #fff;
}

#boombox-container {
  display: flex;
  align-items: center;
  flex-direction: column;
}
#henrys-world-logo {
  width: 65%;
}

#robot-hangout-container {
  width: 80%;
  height: 75%;

  display: flex;
  align-items: center;
  justify-content: space-around;
}

.robot-image {
  width: 100%;
  height: auto;
}

.boombox-image {
  cursor: default;
}
.boombox-image:hover {
  cursor: pointer;
}

/* Styles applied only on mobile devices */
@media (max-width: 767px) {
  #content {
    height: 80%;
    width: 75%;
  }

  #henrys-world-logo {
    width: 100%;
    height: auto;
  }
  .robot-image {
    width: 100%;
    height: auto;
  }

  .mobile-hide {
    display: none;
  }

  #robot-hangout-container {
    width: 80%;
    height: 75%;

    display: grid;
    grid-template-columns: 50% 50%;
    justify-items: center;
    align-items: center;
  }
}
