/* 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-image: url("WEBSITE/pink.jpg");
  background-repeat: repeat;
  background-size: auto;
  background-size: 32px 32px;
  position: relative;
  background-color: #f0f0f0;
  font-family: sans-serif;
  margin: 0;
  padding: 0;
}

.goblin {
  position: absolute;   /* Take it out of the normal flow */
  top: 5000px;            /* Y position */
  left: 800px;            /* X position */
  width: 200px;          /* Optional: control size */
}
.poop {
  position: absolute;   /* Take it out of the normal flow */
  top: 200px;            /* Y position */
  left: 800px;            /* X position */
  width: 200px;          /* Optional: control size */
  color: black;
}

.popup-box {
  position: absolute;
  top: 800px;
  left: 500px;
  width: 300px;
  height: 200px;
  padding: 15px;
  background-color: purple;
  color: black;
  border: 2px solid black;
  box-shadow: 5px 5px 10px rgba(0,0,0,0.4);
  overflow-y: auto; /* Makes it scroll if text overflows */
  z-index: 10; /* Makes it appear above other stuff */
  font-family: monospace;
}

.ouinouin {
  position: absolute;   /* Take it out of the normal flow */
  top: 5000px;            /* Y position */
  left: 850px;            /* X position */
  width: 200px;          /* Optional: control size */
  color: green;
}

.agriculture {
  position: absolute;   /* Take it out of the normal flow */
  top: 2500px;            /* Y position */
  left: 850px;            /* X position */
  width: 200px;          /* Optional: control size */
  color: green;
}

.com {
  position: absolute;   /* Take it out of the normal flow */
  top: 2500px;            /* Y position */
  left: 850px;            /* X position */
  width: 500px;          /* Optional: control size */
  color: green;
}

