body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: white;
  color: black;
}

.page {
  width: 960px;
  margin: 20px auto;
  border: 2px solid #00a7ff;
}

.top {
  background: #92278f;
  padding: 25px 70px 50px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.fruit {
  width: 260px;
  height: 200px;
  object-fit: cover;
  border: 3px solid #00a7ff;
}

.title {
  color: white;
}

.title p {
  margin: 0;
  font-size: 28px;
  font-weight: bold;
}

.title h1 {
  margin: 5px 0 0;
  font-size: 50px;
  line-height: 55px;
  text-transform: uppercase;
}

.intro {
  padding: 30px 70px 20px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.crew {
  width: 600px;
  height: 220px;
  object-fit: cover;
}

.intro p {
  width: 230px;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
}

.sunset {
  position: relative;
  height: 560px;
  overflow: hidden;
}

.sunset img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sunset-text {
  position: absolute;
  top: 0;
  left: 70px;
  width: 270px;
  height: 100%;
  padding: 30px;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  text-align: center;
  font-size: 16px;
  line-height: 20px;
}

.heroes {
  padding: 55px 70px;
  display: flex;
  justify-content: space-between;
}

.heroes img {
  width: 190px;
  height: 220px;
  object-fit: cover;
}

.bottom {
  padding: 10px 70px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: right;
  gap: 25px;
}

.bottom p {
  width: 270px;
  font-size: 16px;
  line-height: 20px;
}

.bottom img {
  width: 210px;
}