body {
  margin: 0;
  padding: 40px;
  font-family: Arial, sans-serif;
  background-color: #f6f6fa;
}
.container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100vh;
  background-color: #fff;
  flex-direction: row-reverse;
  width: 1200px;
  margin: 0 auto;
}
.container a {
  position: absolute;
  left: 10px;
  top: 10px;
  font-size: 20px;
  text-decoration: none;
}
.video-container {
  display: flex;
  justify-content: space-around;
  width: 100%;
}
.image-container {
  width: 100%;
  flex: 1;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.image {
  border: solid black 1px;
  margin: 10px;
  width: 300px;
  max-height: 200px;
  overflow: hidden;
  height: auto;
  cursor: pointer;
}
.image img {
  width: 100%;
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  overflow: auto;
}
.modal-content {
  position: absolute;
  top: 0;
  cursor: pointer;
}
.close {
  position: fixed;
  top: 10px;
  right: 15px;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}
