.cards{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 3rem;
}
.cards__box {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 10px;
    background-color: #171a4a;
    padding: 1em;
    border-radius: 25px;
    transition: .4s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.4) 1px 2px 2px;
}

.cards__name{
    color: white;
    font-weight: 700;
    font-size:1.25rem;
    padding-bottom: 10px;
}
.cards__price{
    color: white;
    font-style: italic;
    font-weight: 700;
    font-size: 1.16rem;
}

.cards__box:hover {
    transform: translateX(-0.5em) translateY(-0.5em);
    border: 1px solid #171717;
    box-shadow: 10px 10px 0px #666666;
}

.cards__btn {
    margin-top: 2em;
    align-self: center;
    padding: 0.7em;
    padding-left: 1em;
    padding-right: 1em;
    border-radius: 10px;
    border: none;
    color: black;
    transition: .4s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.4) 1px 1px 1px;
}