@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro&family=JetBrains+Mono&family=Sora&display=swap');

body {
    background-color: #f5f5f5;
    color: #000000;
    font-size: 18px;
    line-height: 1.5;
    margin: auto;
    max-width: 800px;
    padding: 40px;
    font-family: "Sora", sans-serif;
}

a {
    color: #a30868;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #222222;
        color: #ffffff;
    }
    a {
        color: #f39fe5;
    }
}

li {
    list-style-type: square;
    padding-bottom: 5px;
}

.header-text {
    text-align: center;
}

.avatar {
    height: 200px;
    width: auto;
    margin: auto;
    border-radius: 12px;
    box-shadow: 0px 0px 9px 5px #00000054;
    display: flex;
    align-items: center;
    justify-content: center;
}