@import url("https://fonts.googleapis.com/css2?family=Ubuntu&display=swap");
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-family: "Ubuntu";
  font-weight: 900;
  display: flex;
  justify-content: center;
  overflow-x: hidden;
  background-color: #efdd69;
}
body main h1 {
  text-align: center;
}
body main .card {
  width: 400px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.231372549);
  margin: 1rem;
  border-radius: 15px;
  background-color: #3e7bd1;
  position: relative;
  transition: transform 0.3s ease;
  transform: translateX(100%);
}
body main .card:nth-of-type(even) {
  transform: translateX(-100%);
}
body main .card h3 {
  color: #fff;
  font-size: 2.5rem;
}
body main .card.show {
  transform: translateX(0%);
}/*# sourceMappingURL=scroll.css.map */