.section {
    height:600px;
    width:100%;
    box-sizing: border-box;
    margin-bottom:20px;

}

.section .left, .section .right {
    height:100%;
    width:50%;
    float:left;
}

.section .left {
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}
.left .centered {
    max-width: 500px;
}

.section .right {
    padding:10px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}
.section .right img {
    height:80%;
}

.section .full {
    height:100%;
    width:100%;
    padding:40px;
    box-sizing: border-box;
}

.full > div {
    width:100%;
    height:100%;
    border-radius: 50px;
    box-shadow: 0 4px 8px 0 rgba(0, 191, 255, 0.2), 0 6px 20px 0 rgba(0, 191, 255, 0.2);
    position: relative;

    background-image: url('/assets/cover/bio_backing.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

}
.full div img {
    height:100%;
    width:100%;
    border-radius:50px;
}

.text {
    position:  absolute;;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width:90%;
    text-align: center;
}
.text p {
    font-family: jersey;
    font-weight: lighter;
}
.centered p {
    font-family: jersey;
    font-weight: lighter;
}