  #welcome {
    width: 80%;
    display: flex;
    align-items: stretch; 
    justify-content: space-evenly;
    gap: 2rem ;
    max-width: 1200px;
  }
  #welcome-first,#welcome-second{
    background: #1f1f1f;
    padding: 2rem;
    border-radius: 10px;
    max-width: 600px;
    margin-bottom: 2rem;
    flex: 1;
    
  }
  #welcome-first p{
    color: #fff;
    font-size: 1.3rem;
    text-align: center;
  }
  #hero{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2rem ;
    
  }

  #hero-image {  
    border-radius: 20px;
    background: #1f1f1f;
    width: 80%;
    height: 80vh;
    display: flex;
    flex-direction: column;
    gap: 10px; 
    padding: 10px;
    box-sizing: border-box;
    max-width: 1200px;
  }

  iframe{
    width: 100%;
    height: 100%;
  }
  #div12, #div34 {
    display: flex;
    flex: 1; 
    gap: 10px; 
    transition: 1s;
  }

  #image1, #image2, #image3, #image4 {
    border-radius: 10px;
    transition: 0.2s;
    background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
  }
 

  #image1, #image4 {
    flex: 3; 
  }
  #image2, #image3 {
    flex: 2; 
  }

  

@media  (max-width: 1000px) {
 #div12, #div34 {
    display: flex;
    flex-direction: column;
    width: 100%; 
  }
  #welcome{
  display: grid;
   flex-direction: column;
   align-items: center;
   width: 100%;
   gap: 0;
 }
  #image1, #image2, #image3, #image4 {

    width: 100%;
    height: 400px;
    flex: 2;
  }
  #hero{
    padding: 1rem;
  }
  #hero-image {
    width: 100%;
  }
   #welcome-second {
   width: auto;
   height: 400px;
 }
}
