.card {
    background-color: rgb(239, 240, 242);
    border-radius: 25px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    max-width: 350px;
    margin: auto;
    text-align: center;
    perspective: 1000px;
}

img {
    border-radius: 25px 25px 0 0;
}

.title {
    color: rgb(122, 121, 128);
    font-size: 16px;
}

button {
    border: none;
    outline: 0;
    display: inline-block;
    padding: 8px;
    color: white;
    background-color: #000;
    border-radius: 0 0 25px 25px;
    text-align: center;
    cursor: pointer;
    width: 100%;
    font-size: 18px;
}

a {
    text-decoration: none;
    font-size: 22px;
    color: rgb(0, 0, 0);
}

button:hover, a:hover {
    background-color: #20473b;
    border-radius: 0 0 25px 25px;
}