/* 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("notebook.jpeg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
       
      }

h1 {
  color: white;
  font-size: 30px;
 text-align: center;
 font: Arial;
}

div {
  background-color: transparent;
}


img {
  object-fit: cover;
}

#myButton {
  /* Initial styles */
  transition: transform 0.3s ease-in-out; /* Smooth transition over 0.3 seconds */
}

#myButton:hover {
  transform: translateY(-5px); /* Move the button up 5 pixels on hover */
}

button img {
  background-color: transparent;
  border: none;
  display: block;
  width: 100px; /* or whatever size you want */
}

.imgtxt img {
    position: absolute; 
    top: 50px; /* Moves the image 50 pixels down from the top of the container */
    left: 100px; /* Moves the image 100 pixels in from the left of the container */
}


.imgtxt {
  width: fit-content;
  height: fit-content;
  display: inline-block;
  position: relative;
}
.imgtxt span {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  font-size: 2.5rem;
  color: #FFF;
  filter: drop-shadow(1px 1px 0 black) 
    drop-shadow(-1px 1px 0 black)
    drop-shadow(1px -1px 0 black)
    drop-shadow(-1px -1px 0 black);
}
.imgtxt:hover span, .imgtxt:focus span {
  opacity: 1;
}
.imgtxt:hover img, .imgtxt:focus img {
  /* add hover effects like transform or filter to your images here! */
}
	