body {
    margin: 0;
    padding: 0;
    background: black;
    color: white;
    font-family: Georgia, serif;
}


.bio-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}


.bio-image {
    position: absolute;
    height: 95vh;
    width: auto;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    object-fit: contain;
}

/* TEXT ON EMPTY LEFT AREA */

.bio-text {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);

    width: 35%;

    color: white;
    text-shadow: 0 0 10px black;

    z-index: 2;
}


.bio-text h1 {
    font-size: 3rem;
    font-weight: normal;
    margin-bottom: 25px;
}


.bio-text p {
    font-size: 1.1rem;
    line-height: 1.6;
}