@import url('https://fonts.googleapis.com/css?family=Playfair+Display:400&display=swap');

body {
    font-family: 'Playfair Display', serif;
}

aside {
    position: relative;
    background-color: #b8ece8;
    width: 500px;
    height: 100vh;
}

.portrait {
    position: absolute;
    top: 200px;
    left: 200px;
}

.portrait img {
    display: block;
    max-height: 600px;
}

.info {
    position: absolute;
    top: 820px;
    left: 300px;
    width: 800px;
}

.info h1 {
    font-size: 32pt;  
    font-weight: normal;
    margin: 0;
}

.info h2 {
    margin: 0.5em 0 0 0;
    font-weight: normal;
}

@media screen and (max-height: 986px) {
    .portrait {
        top: 20px;
    }

    .info {
        top: 650px;
    }
}

@media screen and (max-width: 768px) {
    aside {
        width: 300px;
    }

    .portrait {
        top: 50px;
        left: 50px;
    }

    .portrait img {
        width: 300px;
    }

    .info {
        top: 390px;
        left: 90px;
        width: 70vw;
    }

    .info h1 {
        font-size: 22pt;
    }

    .info h2 {
        font-size: 16pt;
    }
}

@media (prefers-color-scheme: dark) {
    html, body {
        background-color: #000;
        color: #fff;
    }

    aside {
        background-color: #16083b;
    }
}