@font-face {
    font-family: 'IBM Plex Sans';
    font-style: normal;
    font-weight: 400;
    src: url(/fonts/IBMPlexSans-Regular.ttf);
}

a {
    color: hsl(219, 79%, 50%);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:visited {
    color: hsl(260, 57%, 50%);
}

body {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 16px;
    line-height: 1.3;
    margin: auto;
    max-width: 760px;
    min-width: 300px;
    padding: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0px;
}

h1, h3 {
    margin-bottom: 10px;
}

h2 {
    background-color: hsl(0, 0%, 90%);
    border-radius: 8px;
    margin-bottom: 15px;
    margin-left: -8px;
    margin-right: -8px;
    padding-bottom: 2px;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 2px;
}

p {
    margin-bottom: 10px;
    margin-top: 0px;
}

ul {
    margin-bottom: 10px;
    margin-top: 0px;
}

.section {
    margin-bottom: 30px;
}

.title {
    text-align: center;
}

.title img {
    border-radius: 50%;
    display: block;
    height: 150px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    width: 150px;
}

@media (prefers-color-scheme: dark) {
    a {
        color: hsl(219, 79%, 65%);
    }

    a:visited {
        color: hsl(260, 57%, 65%);
    }

    body {
        color: white;
        background-color: black;
    }

    h2 {
        background-color: hsl(0, 0%, 15%);
    }
}