@import url("https://fonts.googleapis.com/css2?family=Muli&display=swap");
body {
  box-sizing: border-box;
}
body {
  background-color: #e7f0ea;
  font-family: "Muli", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  overflow-x: hidden;
}
h1 {
  margin: 10px;
  padding: 10px;
  color: #15b345;
  border: 2px solid black;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
img{
    width: 400px;
    height: 200px;  
}
.box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 400px;
  height: 200px;
  margin: 10px;
  border-radius: 10px;
  box-shadow: 2px 4px 5px rgba(0, 0, 0, 0.3);
  transform: translateX(400%);
  transition: transform 0.4s ease-in;
}
.box:nth-of-type(even) {
  transform: translateX(-400%);
  transition: transform 0.4s ease-in;
}
.box.show {
  transform: translateX(0);
}
