@import url("https://fonts.googleapis.com/css2?family=Baloo+Paaji+2:wght@400;500&display=swap");

* {
    margin: 0;
    padding: 0;
}


.container {
    display: grid;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: rgb(45, 45, 55);
    grid-template-columns: 300px 300px 300px;
    grid-gap: 70px;
    font-family: 'Baloo Paaji 2', cursive;
}

.card {
    height: 25rem;
    background-color: #222831;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.7);
    color: white;
}

.card__name {
    margin-top: 15px;
    font-size: 1.5em;
}

.card__image {
    object-fit: cover;
    height: 160px;
    width: 160px;
    border-radius: 50%;
    border: 5px solid #272133;
    margin-top: 35px;
    box-shadow: 0 0px 25px rgba(235, 25, 109, 0.733);
}


.btn {
    box-shadow: inset 0 0 0 4px #58cdd1;
    color: #58afd1;
    -webkit-transition: color 0.25s 0.0833333333s;
    transition: color 0.25s 0.0833333333s;


    cursor: pointer;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1.5;
    font: 700 1.2rem 'Roboto Slab', sans-serif;
    padding: 0.75em 2em;
    letter-spacing: 0.05rem;
    margin: 1em;
    width: 13rem;
}

.btn:hover {
    color: #ffe593;
}