@import url("./fonts.css");

:root {
    color-scheme: light dark;
    background-color: light-dark(#fff, #020202);
    color: light-dark(#000000, #fefefe);
}

body {
    font-family: "Plus Jakarta Sans", serif;
    font-weight: 500;
    height: 100dvh;
    max-width: 600px;
    box-sizing: border-box;
    padding: 1.5rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

header {
    display: flex;
    flex-direction: column;
    margin-top: 3rem;
}

header h1 {
    font-weight: 900;
    font-size: 2.5rem;
    margin-left: -1px;
    margin-bottom: -1rem;
}

header .subtitle {
    font-size: 1.25rem;
    font-style: italic;
}

main ul {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    list-style-type: none;
    padding-left: 0;
}

main ul li {
    display: flex;
    flex-direction: row;
    gap: 0.5em;
    align-items: center;
}

main ul li svg {
    height: 1.15em;
    margin-top: 0.125em;
}

a:link {
    color: #18710c;
    text-decoration: none;
}

a:visited {
    color: #18710c;
}

a:hover {
    cursor: pointer;
    text-decoration: underline;
}
