* {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-self: center;
    height: 100vh;
    padding: 2rem;
}

h1 {
    font-size: 4rem;
}

p {
    color: #666;
    text-align: center;
}

ul {
    list-style-type: none;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

a {
    color: blue;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a img,
a svg {
    width: 1em;
    height: 1em;
    stroke: currentColor;
}

a span {
    margin-right: 0.5em;
}

.external-link-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: middle;
    margin-left: 0.2em;
}

.external-link-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Mobile devices */
@media only screen and (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    ul {
    }

    p {
        margin-top: 1rem;
    }
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #111;
        color: #fff;
    }

    a {
        color: #4d4dff;
    }
    
}
