@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
  box-sizing: border-box;
}

body {
  background-color: #493323;
  font-family: "Roboto", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  overflow-x: hidden;
}

h1 {
  margin: 40px;
  color: #ffdf91;
}

.box {
  background-color: #91684a;
  color: #fff;
  display: flex;
  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 .4s ease;
}

.box:nth-of-type(even) {
  transform: translateX(-400%);
    background-color: #eaac7f;
}

.box.show {
  transform: translateX(0);
}

.box h2 {
  font-size: 45px;
}