@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Montserrat:ital,wght@0,100..900;1,100..900');

:root {
    font-family: "Montserrat", sans-serif;
    color: #141117;
    background-color: white;
    font-size: 20px;
}

a {
    color: #2E39DC;
}

body {
    margin: 0;
    text-align: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
}

h2 {
    font-size: 1.5rem;
    font-weight: 300;
    margin: 0;
}

p {
    margin: 0;
}

ul {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 3rem;
    font-family: "Libre Baskerville", serif;
    font-size: 1.25rem;
}

li {
    list-style: none;
}

li:not(:first-child)::before {
    content: "•";
    margin: 0 1rem;
}

a {
    font-size: 1.25rem;
}

@media (prefers-color-scheme: dark) {
    :root {
        background-color: #141117;
        color: white;
    }

    a {
        color: #48BEFF;
    }
}

@media screen and (max-width: 600px) {
    :root {
        font-size: 16px;
    }
}
