/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.linkinbio {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.linkinbio--item {
    width: 23%;
    min-height: 150px;
    display: inline-block;

    margin: 1%;

    text-decoration: none;

}

.linkinbio--item a {
    color: inherit;
    display: block;
    text-decoration: none !important;
    position: relative;
}
.linkinbio--item--link {
    min-height: 150px;
}

.linkinbio--item--picture {
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
}

.linkinbio--item--title {
    text-align: center;
    background: #e0e0e0;
    padding: 10px;
}
.linkinbio-user {
    text-align: center;
    padding: 10px 10% 10px 10%;
}
.linkinbio-user p {
    max-width: 50%;
    margin: auto;
    padding: 20px 0 20px 0;
}

.linkinbio-avatar {
    margin: auto;
    border-radius: 50%;
    height: 150px;
    width: 150px;
    box-shadow: 0px 0px 16px 4px #afafaf;
}

@media (max-width: 1200px){

}
@media (max-width: 1024px){

}
@media (max-width: 768px){
    .linkinbio--item, .linkinbio--item--link {
        min-height: 175px;
    }
    .linkinbio--item {
        width: 31%;
    }
}
@media (max-width: 600px){
    .linkinbio--item, .linkinbio--item--link {
        min-height: 175px;
    }
    .linkinbio--item {
        width: 48%;
    }
}