* {
    box-sizing: border-box;
}

body {
    font-family: 'Genos', sans-serif;
    ;
    display: flex;
  
    flex: wrap;
    align-items: center;
    justify-content: center;
    background: #333;
    overflow-x: hidden;




    margin: 0;
    flex-direction: column;
}



.title {
    color: white;
}

.anweisung {
    color: white;
}

.container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
   max-width: 900px;

}

.box {
    background-color: rgb(223, 169, 62);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    width: 400px;
    height: 200px;
    margin: 10px;

    border-radius: 10px;
    box-shadow: 2px 4px 5px rgba(129, 79, 79, 0.3);
    /* transform: translateX(400%); */
    transition: transform 0.4s ease;
    box-shadow: inset 0 0 0 0 black;
    transition: ease-out 0.3s;
    cursor: pointer;
}

.box img{
    height: 50px;
    width: 50px;
    margin-left: 20px;
}


h1 {
    font-size: 50px;
}


h2 {
    font-size: 50px;
    
}

.traduccion {
    display: none;

}


.box:nth-of-type(even) {
    /* transform: translateX(-300%); */
    background-color: rgb(46, 147, 235);
}

.box.show {
    transform: translateX(0);
}

/* <!-- .box:hover {
    box-shadow: inset 600px 0 0 0 black;

} --> */

.box:active .traduccion {
    display: inline-flex;
}

.box:active h1 {
    display: none;
}

   
.buttons{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}


.btn {
    text-align: center;
    border-radius: 10px;
    background-color: #ff0057;
    border: none;
    width: 100px;
    height: 50px;
  }
  
  .btn a {
    text-decoration: none;
    color: white;
    font-size: 20px;
    padding: auto;
  }
  


@media (max-width:600px) {
body {
    overflow-x: hidden;




    }



    .box {
        width: 350px;
    }

}