*{margin:0;padding:0;box-sizing:border-box}body{min-height:100vh;font-family:Poppins,sans-serif;text-align:center;background:#4D455D}button{font-family:Poppins,sans-serif;outline:none}#app{width:100%;height:100vh;display:flex;justify-content:center;align-items:center}.game-container{width:90%;height:60%;display:grid;grid-template-columns:repeat(4,1fr);grid-template-rows:repeat(4,1fr);justify-items:center;align-items:center;gap:15px;animation:game-animation 1s ease-in-out}@keyframes game-animation{0%{transform:scale(0)}80%{transform:scale(1.05)}to{transform:scale(1)}}.game-container__card{width:100%;height:100%;background:#F5E9CF;display:flex;justify-content:center;align-items:center;border-radius:10px;font-size:60px;color:#4d455d;transition:all .2s}.game-container__card.down{background:#F5E9CF}.game-container__card.down:hover{box-shadow:0 0 12px #f5e9cfb3;cursor:pointer}.game-container__card.up{background:#7DB9B6}.game-container__card.selected{background:#E96479}@media screen and (max-width: 550px){.game-container__card i{font-size:35px}}@media screen and (min-width: 850px){.game-container{width:60%;height:80%}}.home{width:80%;color:#f5e9cf}.home__title{font-size:3rem}.home__subtitle{font-weight:200;font-size:.9rem;margin-bottom:50px}.home__button{padding:10px 20px;background:#F5E9CF;border:none;color:#4d455d;font-weight:500;border-radius:10px;cursor:pointer;transition:all .2s}.home__button:hover{box-shadow:0 0 10px #f5e9cf}.home__button:active{transform:scale(.98)}
