* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: clamp(0.7rem,2vw,1.2rem);
  font-family: 'Courier New', Courier, monospace;
}

body {
  color: #fff;
  background-color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.img1 {
  background: url(./assets/Sanji_LiveAction.jpg);
  transition: 1s all;
}

.img2 {
  background: url(./assets/Zoro_LiveAction.jpg);
  transform: scale(120%);
  transition: 1s all;
}

.img3 {
  background: url(./assets/Luffy_Crew.jpg);
  transition: 1s all;
}

.provertyP {
  background-size: cover;
  background-position: center;
  height: 24vw;
  width: 40vw;
}

.E1, .E2, .E3 {
  width: 40vw;
  position: relative;
  margin: 2rem;
  overflow: hidden;
}

@media screen and (max-width: 500px) {
  .E1, .E2, .E3 {
    width: 80vw;
  }

  .provertyP {
    width: 80vw;
    height: 45vw;
  }
}