/* 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, 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;
}

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;
}

.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;
    }
}