#wrapper {
    margin-bottom: 10vh;
}

.memberpage .portrait {
    padding-bottom: 1.5rem;
}

.memberpage .body {
    font-family: 'Roboto';
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.memberpage .membertype {
    margin-bottom: 20px;
    margin-top: -20px;
}

@media only screen and (max-width: 600px) {
    .memberpage .portrait {
        text-align: center;
        padding-left: 0;
    }

    .memberpage .portrait img { 
        border-radius: 100%;
    }
}

@media only screen and (min-width: 600px) {
    .memberpage .portrait {
        text-align: left;
        padding-left: initial;
        padding-right: 0;
    }
    .memberpage .portrait img {
        border-top-left-radius: 25px;
        border-top-right-radius: 25px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
}

@media only screen and (min-width: 992px) {
    .memberpage .portrait img {
        border-top-left-radius: 25px;
        border-top-right-radius: 0;
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 0;
    }
}