* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
body {
  width: 100%;
  height: max-content;
  background-color: beige;
}
.container {
  width: 1000px;
  margin: auto;
  background-color: white;
}
header {
  width: 100%;
  height: 150px;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 3rem;
  text-transform: capitalize;
}
header img {
  width: 8rem;
  object-fit: fill;
  height: 8rem;
}
.video {
  width: 100%;
  display: flex;
  flex-direction: row;
  padding: 1rem;
  background-color: #cccccc;
}
.video_cnt {
  padding: 1rem;
  line-height: 1.8;
}
.image {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-evenly;
  background-color: #c13832;
  padding: 2rem;
}
.image img {
  width: 13rem;
  height: 13rem;
}
.footer img {
  width: 1000px;
  object-fit: cover;
}
