:root {
    color-scheme: light dark;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

ul[role="list"],
ol[role="list"] {
    list-style: none;
}

html:focus-within {
    scroll-behavior: smooth;
}

a:not([class]) {
    text-decoration-skip-ink: auto;
}

img,
picture,
svg,
video,
canvas {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    font-style: italic;
    background-repeat: no-repeat;
    background-size: cover;
}

input,
button,
textarea,
select {
    font: inherit;
}

@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
        transition: none;
    }
}

body,
html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    display: grid;
    justify-content: center;
    align-content: center;
    height: 100vh;
    margin: 0;
    font-size: 100%;
    font-family: "Open Sans", sans-serif;

    background-color: light-dark(#EAEAEA, #2D2D2D);
    color: light-dark(#262626, #DEDEDE);
}

h1 {
    font-family: "Montserrat", sans-serif;
    color: light-dark(#2D2D2D, #EAEAEA);
}

h1.logo img {
    width: 3rem;
    height: 3rem;
    float: left;
    margin-right: 0.2rem;
}

h1.logo {
    line-height: 3rem;
    margin-bottom: 1rem;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.links ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.links ul li {
    list-style: none;
}

.links img {
    width: 1.5rem;
    height: 1.5rem;
    opacity: 90%;
}

.links svg {
    
    width: 2rem;
    height: 2rem;
    fill: light-dark(#262626, #DEDEDE);
}

footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: light-dark(#262626, #DEDEDE);
    text-align: center;
    opacity: 0.5;
}