

block-style {
    background-color: #f0f0f0; /* Light gray background */
    border: 2px solid gray;     /* Solid dark gray border */
    padding: 15px;             /* Space between the text and the border */
    margin: 20px 0;            /* Space above and below the block */
    border-radius: 5px;        /* Slightly rounded corners */
    max-width: 600px;          /* Optional: limit the width for better readability */
}
.box{
  width: 95%;
  border: 15px solid #e9a2fc;
  padding: 2.5%;
  margin: 1px;
  background-color: #e9a2fc;
  border-radius: 20px;
  position: relative;
       top: 0px;
  animation:  5s;
}

body {
  background-color: #e5e5f7;
  width: 80%;
  margin-left:auto;
  margin-right:auto;

}
h1{
text-align: center;
}
h2{
  text-align: center;
}
p{
  text-align: center;
  
}
li{
  padding: 10px;
}
img {
  display: block; /* Images are inline by default; change to block for margin: auto to work */
  margin: 0 auto; /* Sets top/bottom margin to 0 and left/right margin to auto */
  width: 80%;  /* "width:"Optional: Set a specific width if needed, otherwise it will take up full available width*/
  position: relative;
    top: 0px;
  overflow:hidden;
  border: 5px solid purple; 
  border-radius: 50px;
}

.image3{
    display: block; /* Images are inline by default; change to block for margin: auto to work */
  margin: 0 auto; /* Sets top/bottom margin to 0 and left/right margin to auto */
  width: 80%;  /* "width:"Optional: Set a specific width if needed, otherwise it will take up full available width*/
  position: relative;
    top: -50px;
  overflow:hidden;
  border: 5px solid purple; 
  border-radius: 50px;
}
.image-container {
  border: 2px solid black; /* Apply border to the container */
  display: inline-block; /* Adjust as needed for layout */
}

.image-container img {
  display: block; /* Remove extra space below image */
  padding-left: 5px; /* Adjust this value to control the "smaller" border on the left */
  /* You can use padding-top, padding-right, or padding-bottom for other sides */
}
a {
  text-align: center;
}