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

* {
    box-sizing: border-box;
}

body {
    background-color: rgb(239, 233, 224);
    font-family: "Roboto", sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    overflow-x: hidden;
}

.box {
    background-color: #3274c6;
    margin: 10px;
    padding: 60px 90px;
    border-radius: 8px;
    color: white;
    font-size: 32px;
    transform: translateX(400%);
    transition: transform 0.4s ease-out;
}

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

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