body {
    font-family: 'Roboto', sans-serif;
}
.image-container {
    width: 300px;
    height: 200px;
    overflow: hidden;
  }
  .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

.video-container {
    width: 100%;
    height: 250px; /* Set a fixed height */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video fills the container */
}
