/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #CEA9FF; /* fallback */
  background-image: url(https://hotwifemusic.neocities.org/background2.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #cfcfcf;
  font-family: 'Press Start 2P', monospace;  font-size: 12px;

}

.title {
  font-family: 'Press Start 2P', monospace;
  color: #0ff;          /* neon cyan */
  text-shadow: 1px 1px #f0f, -1px -1px #f0f; /* glowy effect */
  
}
.draggable-box:active {
  z-index: 2000;
}

#galleryBox {
  position: absolute;
  top: 300px;
  left: 200px;
}
#mainHeadline {
  font-size: 100px; /* bigger size */
  color: #FF00FF; /* optional neon color */
  text-shadow: 0 0 10px #FFFF00, 0 0 20px #FF00FF;
}
.friends {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
  gap: 10px;
  justify-items: center;
}

.friends img {
  width: 80px;
}