html,body{
    margin: 0;
    padding: 0;
    font-family: "Bitcount", system-ui;
}

.icons{
    font-size: 32px;
    color: rgb(87, 79, 96);
    margin-top: 8px;
    margin-bottom: 4px;
}
.container{
    width: 100%;
    height: 100vh;
    background-color: antiquewhite;
}

.wrapper{
    display: flex;
    justify-content: center;

    height: auto;
    flex-wrap: wrap;
}
.text-center{
    text-align: center;
}
.card{
    color: white;
    border: 1px solid white;  
    background-color: tomato;
    padding: 32px;
    margin: 8px;
  
    box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.5);
}

.title{
    font-size: 2emx;
    margin-top: 0;
}

.description{
    font-size: 0.9em;
    margin-top: 8px;
}

.btn{
    font-family: "Bitcount", system-ui;
    padding: 12px;
    margin-top: 16px;
    cursor: pointer;
    border: none;
    width: 100%;
}

.btn:hover{
    background-color: antiquewhite;
    color: tomato;
    -ms-transform: rotate(8deg);
    transform: rotate(8deg);
}

@media screen and (max-width:412px){
    .card{
        width: 95%;
    }
}