/* 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: olive;
  color: darkred;
  font-family: Verdana;

}

.container {
  display: flex;
  justify-content: center; /* horizontal */
  align-items: center;     /* vertical */
}
.apple-image {
  width: 200px;
  height: 200px;
}
.notebook-image {
  width:900px;
  height:800px;
}

.image-container {
  position: relative; /* Acts as the anchor for the text */
  display: inline-block;
}

.image-container img {
  display: block;
  width: 100%; /* Responsive sizing */
  height: auto;
}
.overlay-text {
  position: absolute;
  top: 6%; /* Position from the top */
  left: 24%; /* Position from the left */
  transform: translate(-50%, -50%); /* Perfectly centers the text */
  color: white;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background for readability */
  padding: 10px;
}
.overlay-text2 {
  position: absolute;
  top: 80%; /* position from the top */
  left: 26%; /* position from the left */
  transform: translate( -50%, -50%); /* perfectly centers the text */
  color: white;
  background-color: rgba(0, 0, 0, 0.5); /* semi-transparent background for readability */
  padding: 10px;
}
.apple-image {
  position: absolute;
  top: 300px;
  left:  400px;
}
.overlay-text3 {
  position: absolute;
  top: 25%; /* position from the top */
  left: 500px; /* position from the left */
  transform: translate( -50%, -50%); /* perfectly centers the text */
  color: white;
  background-color: rgba(0, 0, 0, 0.5); /* semi-transparent background for readability */
  padding: 10px;
}
 .chess-board {
   position: absolute;
   top: 90px;
   left: 600px;
 }
  .piano-keys {
    width:750px;
    height:260px;
  }
  
  .piano-keys {
    position: absolute;
    top: 850px;
    left:15px;
  }
  
  .h2 {
  position: absolute;
  top: 850px;
  left: 80px
}
.corkboard {
  position: absolute;
  top:35px;
  left:30px;
}
.h {
  position: absolute;
  top:10px;
  left:500px;
}
.apple-note {
  position: absolute;
  top:60px;
  left:70px;
}
.apple-note {
  width: 150px;
  height: 150px;
}

.strawberry-jam {
  width: 150px;
  height: 175px;
}

.strawberry-jam {
  position: absolute;
  top: 75px;
  left: 400px;
}
.ticket {
  position: absolute;
  top:150px;
  left:200px;
}
.ticket {
  width:100px;
  height:auto;
}
.crossword-pzl {
  width:200px;
  height:200px;
}
.crossword-pzl {
  position: absolute;
  top:215px;
  left:200px;
}
.love-letr {
  position: absolute;
  top:200px;
  left:550px;
}

.love-letr {
  width:150px;
  height:auto;
}
.piano-keys2 {
  position: absolute;
  top:50px;
  left:auto;
}
.tape {
  width:50px;
  height:50px;
}

.cassette {
  width:50px;
  height:50px;
}
.cassette {  
  position:absolute;
  top:400px;
  left:600px;
}
.piano-keys2 {
  position:absolute;
  top:25px;
  left:25px;
}
.piano-keys2 {
  width:900px;
  height:auto;
}
.cranberries {
  width:50px;
  height:50px;
}
.pride-prejudice {
  width:100px;
  height:200px;
}



}