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

:root {
  --primary-color: #f755b6;
  --primary-color-dark: #ea33d5;
  --secondary-color: #ca8a04;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --extra-light: #fff2f2;
  --max-width: 1200px;
}

*{
    margin: 0px;
    padding: 0px;
}

#fixed-button {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #ffffff; /* Set your desired background color */
  color: #ff0000c4; /* Set your desired text color */
  border: none;
  border-radius: 50%; /* to make it circular */
  padding: 20px;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
}

#fixed-button:hover {
  background-color: #70c6ff; /* Change color on hover if desired */
}


/* SECTION DEFAULTS */
.section {
    background-color: var(--extra-light);
   
  }
  
  .section__container {
    min-height: 100vh;
    max-width: var(--max-width);
    margin: auto;
    padding: 1rem;
   
  
  }

 
  
  
  .subtitle {
    letter-spacing: 2px;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .title {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
  }
  
  .title span {
    font-weight: 600;
  }
  
  .description {
    line-height: 1.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
  }
  
 

.image img {
  width: 100%;
  height: auto;
}

.image {
  margin: 20px;
  padding: 20px;
}
  

@media (width > 845px) {

  .section__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
 
  .image {
    display: grid;
    place-items: center;
    z-index: 1;
  }
  
  .image img {
    width: min(25rem, 90%);
   
  }

  

  .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
    
  }
  


}

.image-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: rgb(246, 255, 255);
}

.image-item {
  width: 250px; 
  height: 500px; 
  margin: 10px; 
  overflow: hidden; 
}

.imgn {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}

footer {
  background-color: #333;
  color: #fff;
  padding: 30px 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-column {
  flex: 1 1 300px;
  margin-bottom: 20px;
}

.footer-column h3 {
  font-size: 24px;
}

.footer-column p {
  font-size: 14px;
}

.social-icons {
  list-style-type: none;
  padding: 0;
}

.social-icons li {
  display: inline-block;
  margin-right: 10px;
}

.social-icons a {
  color: #fff;
  font-size: 24px;
  text-decoration: none;
}

.footer-bottom {
  background-color: #222;
  padding: 10px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
}

footer {
  background-color: #333;
  padding: 20px;
  text-align: center;
  color: #fff;
}
