

/*CLOUD1*/
.cloud1-container {
  position: absolute;
  /* Define the desired size of the container */
  top: 15px;
  left: 1010px;
  width: 500px;
  height: 500px;  
}

.cloud1-container img {
  /* Make the image fill the container's dimensions */
  width: 100%;
  height: 100%;
   object-fit: contain;  
/* Optional: position the image within the container */
  object-position: center; 
}


/*CLOUD2*/
.cloud2-container {
  position: absolute;
  /* Define the desired size of the container */
  top: 410px;
  left: 1420px;
  width: 500px;
  height: 500px;  
}

.cloud2-container img {
  /* Make the image fill the container's dimensions */
  width: 100%;
  height: 100%;
   object-fit: contain;  
/* Optional: position the image within the container */
  object-position: center; 
}



/*CLOUD3*/
.cloud3-container {
  position: absolute;
  /* Define the desired size of the container */
  top: -5px;
  left: 0px;
  width: 500px;
  height: 500px;  
}

.cloud3-container img {
  /* Make the image fill the container's dimensions */
  width: 100%;
  height: 100%;
   object-fit: contain;  
/* Optional: position the image within the container */
  object-position: center; 
}


/*HOMEPAGE LINK - RABBIT*/
.image-link-container {
    /* Set the container position relative so the text can be positioned absolutely within it */
    position: relative;
    /* Optional: display as block for better control over dimensions */
    display: inline-block;
    width: fit-content;
    height: fit-content;
    box-sizing: border-box;
    z-index: 99; /* Lower z-index for the back layer */
   

}

.image-text {
    /* Position the text absolutely within its parent container */
    position: absolute;
    /* Adjust these values to position the text exactly where you want */
    top: 85%;
    left: 60%;
    /* The transform is used to center the text precisely */
    transform: translate(-50%, -50%);
    /* Optional: styling for readability */
    color: Black; /* Example text color */
    background-color: rgba(0, 0, 0, 0); /* Example background for readability */
    padding: 10px;
    font-size: 15px;
    text-align: center;
    font-family: "Courier New", monospace; /* Change the font family */
 
}

/* Optional: Add hover effect to the text or the link */
.image-link-container:hover .image-text {
    background-color: rgba(0, 0, 0, 0);
    color: #cc1d10;
    font-family: 'Brush Script MT', cursive; /* Change the font family */
}

/*TEXT*/
.aboutme1 {
  color: black;
  font-size: 1 rem;
  top: 50px;
  left: 500px;
  position: absolute;
  z-index: 90;
  width: 500px;
  height: 100px;
}

.aboutme2 {
  color: black;
  font-size: 1 rem;
  top: 400px;
  left: 500px;
  position: absolute;
  z-index: 90;
  width: 500px;
  height: 200px;

}

/*FEEDING*/
.feeding {
  position: absolute;
  /* Define the desired size of the container */
  top: 125px;
  left: 1112px;
  width: 350px;
  height: 350px;  
}

.feeding img {
  /* Make the image fill the container's dimensions */
  width: 100%;
  height: 100%;
   object-fit: contain;  
/* Optional: position the image within the container */
  object-position: center; 
  opacity: 0.5;
}

/*PERSONBIRD*/
.personbird {
  position: absolute;
  /* Define the desired size of the container */
  top: 500px;
  left: 1550px;
  width: 350px;
  height: 350px;  
}

.personbird img {
  /* Make the image fill the container's dimensions */
  width: 100%;
  height: 100%;
   object-fit: contain;  
/* Optional: position the image within the container */
  object-position: center; 
  opacity: 0.5;
}

/*BUGS*/
.bugs {
  position: absolute;
  /* Define the desired size of the container */
  top: 100px;
  left: 100px;
  width: 275px;
  height: 275px;  
}

.bugs img {
  /* Make the image fill the container's dimensions */
  width: 100%;
  height: 100%;
   object-fit: contain;  
/* Optional: position the image within the container */
  object-position: center; 
  opacity: 0.5;
}

/*DOVEGIF*/

.dove {
  display: block;
  position: absolute; 
  width: 500px; /* Set a specific width in pixels */
  height: 400px; /* Set a specific height in pixels */
  top: 130px;
  left: 550px;
}

.dove img {
  width: 100%; /* Make the image fill the container */
  height: 100%; /* Make the image fill the container */
}

