body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgb(25, 25, 25);
    padding: 40px 80px 0px 60px;
    margin: 0%;

    color:white;
}


.project{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 100px;

}

.info{
    width: 23%;
    position: fixed;
}

.detail{
    width: 70%;
}

video{
    width: 100%;
}

.divider{
    background-color: white;
    height: 1px;
    margin-top: 20px;
    margin-bottom: 20px;
}
#footer{
    height: 50px;
}
.video-grid {
    display: grid; /* Use CSS Grid for layout */
    grid-template-columns: repeat(2, 1fr); /* Create two columns of equal width */
    gap: 20px; /* This is the space between the grid items */
    width: 100%; /* Adjust based on your container's width requirements */
  }
  
  .video-item {
    position: relative; /* For absolute positioning of the video */
    width: 100%; /* Full width of the grid column */
    padding-top: 20px;
  }
  
  .video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the area of the .video-item without stretching */
  }
  


@media only screen and (max-width: 700px) {
    body{
        padding: 40px 20px 0px 20px;}
  .project{
flex-direction: column;  }

.info{
    width: 100%;
    position: relative;
}
.detail{
    width: 100%;
}


    }
    
    
    .image-2{
        display:flex; flex-direction:row;justify-content:space-between; flex-wrap: wrap; 
    }
    .image-2 img{
        
width: 49%; margin-bottom: 20px;   }
.image-2 > div{
    width: 49%; margin-bottom: 20px;   }



    .image-2-text{
        display:flex; flex-direction:row;justify-content:space-between;
    }
    .image-2-text img{
      width: 60%; 
    }
    .image-3{
        display:flex; flex-direction:row;justify-content:flex-start; width: 100%; flex-wrap: wrap;
       
        margin-bottom: 10px;
        gap: 2%;
    }
    .image-3 img{
        width: 32%;  margin-bottom: 10px; }

    @media only screen and (max-width:700px){
        body{
            padding: 0px;
        }
       .project{
            padding: 20px;
        }
        .tag{display: flex;
            flex-direction: row;
            justify-content: flex-start;
            flex-wrap: wrap;
      
      }
      .tag-detail{
          padding-right: 10px;
      }
      .image-2{
        display:flex; flex-direction:column;justify-content:flex-start;
      }
      .image-2 img{
          width: 100%;
          margin-top: 10px;
      }
      .image-2 > div{
        width: 100%;  }

      .image-2-text img{
        width: 100%; 
      }
    
      .image-3{
        display:flex; flex-direction:row;justify-content:flex-start; width: 100%; flex-wrap: wrap;
       
        margin-bottom: 20px;
       
    }
    .image-3 img{
        width: 45%;  }
    }
