@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap');

body {
    line-height: 1.6;
    max-width: 600px;
    margin: 30px auto;
    font-family: "Source Code Pro", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

main {
    margin-left: 16px;
    margin-right: 16px;
}

a {
    color: #FF8800;
    text-decoration: underline;
    text-decoration-style: dashed;
}

#title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: -8px;
}

#title h1 {
    font-size: 34px;
    margin: 0;
}

#title img {
    border-radius: 100%;
    width: 40px;
    height: 40px;
    align-self: center;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    #title h1 {
        font-size: 24px;
    }
    #title img {
        width: 40px;
        height: 40px;
    }
}

ul {
    list-style: none;
    padding-left: 20px;
}

ul li {
    position: relative;
    padding-left: 20px;
}

ul li::before {
    content: "✶";
    position: absolute;
    left: 0;
}