/* Reset */

*, *::before, *::after{
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, ul, ol, dl, dd{
    margin: 0;
    padding: 0;
}

body{
    min-height: 100vh;
    line-height: 1.5;
    font-family: system-ui, sans-serif;
}

a{
    text-decoration: none;
    color: inherit;
}

button, input[type="button"], input[type="submit"], input[type="reset"]{
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: none;
    border: none;
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    text-align: inherit;
    line-height: inherit;
    cursor: pointer;
}

img, picture, video, canvas, svg{
    display: block;
    max-width: 100%;
}

ul, ol{
    list-style: none;
}

/* Utilities */

.visually-hidden{
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

span.line{
    display: inline-block;
}

.flex{
    display: flex;
}

.column{
    flex-direction: column;
}

.centered{
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* .desktop-only.desktop-only{
    display: none;
}
.mobile-only.mobile-only{
    display: revert;
}

@media only screen and (min-width: 768px){
    .desktop-only.desktop-only{
        display: revert !important;
    }
    .mobile-only.mobile-only{
        display: none !important;
    }
} */