* {
    margin: 0;
    padding: 0;
}

html, body {
  height: 100%;
  margin: 0;
  margin-top: 1%;
  background: linear-gradient(to top, rgb(255, 203, 211), white);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  color: rgb(18, 18, 18);
}



.main{
    display:flex;
    flex-direction: column;
    gap:60px;
    justify-content: center;
    z-index: 10;
}


 
  .text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .container {
    position: relative; 
    display: flex;
    flex-direction: row;
    gap: clamp(1rem, 4vw, 70px);
    justify-content: flex-start;
    align-items: flex-start;
    padding-inline: clamp(1rem, 4vw, 5rem);
    z-index: 10;
  }
  

  

  .researchQ {
    font-size: 3vw;
    line-height: 1.3;
  }

  .researchQheading {
    font-size: 1.3vw;
    width: 15vw;
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 1.3%;
  }
  
  .h1 {
    width: 10vw;
    font-size: 2.5vw;
  }
  
  .h2 {
    font-size: 2vw;
  }
  
  .h3 {
    width: 15vw;
    font-size: clamp(12px, 2vw, 18px);
  }

  .text {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 3rem); 
  }
  
  
  .paragraph {
    font-size: clamp(12px, 2vw, 18px);
    line-height: 1.6;
    max-width: 90%;
  }
  

  #part01Container{
    margin-top: 30px;
  }

  #part01{
    font-size: 21px;
    width:100%;
  }
  
  .hover-trigger {
    cursor: pointer;
    text-decoration: underline dotted;
    font-weight:500;
    color:purple;
  }
  
  .image-float {
    position: absolute;
    /* top: 50%; */
    /* left: calc(100% + 40px); */
    right:0;
    transform: translateY(-50%);
    display: none;
    width: 350px;
    z-index: 1000;
  }
  
  .hover-container {
    
    display: inline;
  }
  
 .hover-trigger:hover ~ .image-float {
  display: block;
}
  
  
  .hover-image {
    width: 90%;
    box-shadow: 10px 10px 10px rgba(92, 92, 92, 0.6);
  }
  
  .intro-wrapper {
    position: relative;
    height: 1000px;
    overflow: hidden;
    z-index: 1;
  }
  
  .intro-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1; /* behind everything */
    transition: opacity 0.5s ease;
  }