body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: 'Arial', sans-serif;
  height: auto;
}

section.apple {
  display: flex;
  flex-direction: column;
  width: 100%;
}


article.banana {
  position: relative;
  width: 100%;
  height: auto; 
  text-align: center;
}

.banana img {
  width: 100%;
  height: auto;
  object-fit: contain; 
}

.banana p {
  position: absolute;
  top: 20px;
  left: 20px;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}


@media screen and (max-width: 1000px) {
  article.banana {
    height: 100vh; 
   
  }

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

  
  }
}
