/* Styling for the entire page */
body{
    box-sizing: border-box;
    background-color: aquamarine;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    font-family: 'Arial',sans-serif;
}
/* Adding content in the center of main page */
.Main{
  text-align: center;
}
/* Styling for albums*/
.albums{
  display: inline-block;
  margin: 20px;
  flex-direction: column;  /* Images are adjust side by side */
  text-align: center;
}
/* Styling for album images */
.albums input{
  margin: 10px 0px;
  border-radius: 10px;
  height: 150px;
  width: 150px;
  border: 3px solid #02bff3;
  transition: transform 0.3s ease;
  justify-content: center;
  align-items: center;
}
/* Hover the images(hovers whenever placing a cursor on the images) */
.albums input:hover{
  transform: scale(1.1);
}
/* Styling for paragraph present in album container */
.albums p{
  margin: 10px 0;
  padding: 5px;
  font-size: 22px;
  font-style: italic;
  color: #333;
  }
  /* Changes color & bold content & increase size of anchor tag i.e.Link */
  .albums a {
    text-decoration: none; /* Remove underline */
    color: #333; /* Change link color */
    font-weight: bold;
    font-size: 18px;
  }
  
  /* Hover Effects for the Links */
  .albums a:hover p {
    color: #02bff3; /* Change paragraph text color on hover */
  }
/* Styling footer content */
  footer{
    background-color: #2c7873;
    text-align: center;
    position: absolute;
    padding: 0px;
    color: #ffffff;
    bottom: 0;
    width: 100%;
    text-decoration: none;
  }
  /* Adding margin & Padding to paragraph */
  footer p{
    padding: 0px;
    margin: 10px;
  }
  /* Adding color, remove default text decorations & Bold content */
  footer a{
    text-decoration: none;
    color: #7fffd4;
    font-weight: bold;
  }
  /* Hovering links */
  footer a:hover{
    text-decoration: underline; /*Add underline when hovers the cursor over the link*/ 
    transition: 0.5s;
  }
  
  /* Responsive Design for Smaller Screens */
  @media (max-width: 600px) {
    .albums {
      display: block; /* Stack albums vertically on small screens */
      margin: 10px auto;
    }
  
    .albums input {
      width: 120px; /* Smaller images */
      height: 120px;
    }
  }
