body {
    margin: 0;
    padding: 0;
    background-color: hsl(0, 0%, 14%);
}

.bio-photo {
    width: 200px;
    margin-top: 10px;
    object-fit: cover;
}

h2, .white {
    font-size: 1.2rem;
    color: hsl(0, 100%, 97%);
    font-family: "Iosevka Aile", monospace;
    font-weight: 200;
}

h3 {
    font-size: 1rem;
    color: hsl(0, 100%, 97%);
    font-family: "Iosevka Aile", monospace;
    font-weight: 200;
    text-align: left;
    line-height: 1.3;
    padding: 5%;
    text-align: justify;
}

a {
    text-decoration: none;
    display: inline;
    color: hsl(50, 100%, 70%);
}

.section-1 {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 35%;
    overflow-y: auto;
    padding-top: 20vh;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.section-1 h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.section-2 {
    margin-left: 35%;
    width: 65%;
    height: 100vh;
    overflow: auto;
    padding-top: 5vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    background-color: hsl(0, 0%, 9%);
}

.image {
    width: 60%;
    margin: 10px 0;
}

.smaller {
    width: 60%;
}

.right {
    margin-left: 50%;
}

.shift-down {
    margin-top: 15%;
}

.shift-down-more {
    margin-top: 20%;
}

.shift-up {
    margin-top: -15%;
}

.shift-up-more {
    margin-top: -20%;
}

.shift-left {
    margin-right: 8%;
}

.shift-left-more {
    margin-right: 12%;
}

.shift-right {
    margin-left: 8%;
}

.shift-right-more {
    margin-left: 12%;
}

.caption {
    font-size: 0.9rem;
    font-family: "Iosevka Aile", monospace;
    font-weight: 100;
    color: hsl(0, 100%, 97%);
    margin-top: -5px;
    text-align: left;
    font-weight: bold;
}

@media (max-width: 768px) {
    .section-1 {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 35%;
        overflow-y: auto;
        padding: 10vh;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        box-sizing: border-box;
    }

    h2 {
        font-size: 1rem;
    }

    h3 {
        font-size: .8rem;
        padding: 5%;
    }

    .image {
        width: 80%;
        margin: 10px 0;
    }
    
    .smaller {
        width: 45%;
    }
    
    .right {
        margin-left: 50%;
    }
    
    .shift-down {
        margin-top: 15%;
    }
    
    .shift-down-more {
        margin-top: 20%;
    }
    
    .shift-up {
        margin-top: -15%;
    }
    
    .shift-up-more {
        margin-top: -20%;
    }
    
    .shift-left {
        margin-right: 8%;
    }
    
    .shift-left-more {
        margin-right: 12%;
    }
    
    .shift-right {
        margin-left: 8%;
    }
    
    .shift-right-more {
        margin-left: 12%;
    }
}


