@import url("reset.css");
@import url("utils.css");

:root {
    --color-black: #000000;
    --color-white: #ffffff;
    font-family: sans-serif;
}


body {
    font-size: 20px;
    color: var(--color-black);
    background: var(--color-white);
    min-height: 100dvh;
    display: flex;
    justify-content: center;
}

h1 {
    margin-top: 16px;
    margin-bottom: 20px;
}
h2 {
    margin-top: 12px;
    margin-bottom: 12px;
}
div {
    margin-top: 10px;
}
p {
    margin-top: 6px;
    margin-bottom: 16px;
}

img {
    max-width: 100%;
}

.event-walker {
    display: flex;
    justify-content: space-between;

    margin-top: 30px;
    padding: 10px 0;

    a::after {
        display: block;
        color: var(--color-black);
        white-space: nowrap;
        font-size: 20px;
        text-decoration: underline;
    }
    a:hover, a:focus {
        font-size: 0;
        color: white;
        &::after {
            content: attr(data-title);
        }
    }
}

canvas {
    position: fixed;
    inset: 0;
    z-index: -1;
}
