@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');


body, h1, h2, p, ul {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif; ;
}

/* Set a background color and text color for the entire page */
body {
    background-color: #e8f5ff;
    color: #333;
    font-family:'Poppins', sans-serif; ;
    height: flex;
    margin-bottom: 70px;
}



section {
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
 
}


/* Click to see more profiles */
.my-button-class {
   
    text-align: center; /* Center text horizontally */
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    background-color: #F675A8;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}
.my-button-class:hover{
background-color: #554994;
}

/* Add additional styles as needed to customize your website's appearance */

.hero-image {
  margin-top: 30px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("https://i.gifer.com/fxVE.gif");
    height: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }
  
  .hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 30px;
    padding-top: 4%;
  }

  .hero-image2 {
    background-image:  url("https://media.giphy.com/media/k839Mt3itBk0bCvJC3/giphy.gif");
    height: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;

  }
  

/* Media query for tablets */
@media screen and (max-width: 768px) {
  .hero-text {
      font-size: 16px; /* Adjust font size for tablets */
  }
}

/* Media query for phones */
@media screen and (max-width: 480px) {
  .hero-text {
      font-size: 13px; /* Adjust font size for phones */
  }
}
