/* Circle image */

.avatar {
    vertical-align: middle;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border-style: solid;
    border-color: var(--dark-green);
    border-width: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.cover {
    vertical-align: middle;
    width: 100%;
    height: auto;
}

.card-image {
    display: block;
    height: auto;
    width: 100%;
    max-width: 400px;
    max-height: 300px;
    margin: auto;
    margin-bottom: 20px;
    border-style: solid;
    border-width: 10px;
    border-color: var(--grey);
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px;
    height: 250px;
    width: 100%;
    background-color: var(--white);
    padding: 10px 10px 10px 10px;
}

.card p,
.card a {
    color: var(--black);
}

.card a {
    text-align: center;
}