* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: auto !important;
    text-decoration: none;
}

html {
    min-height: 100%;
    position: relative;
    font-family: Manrope, Helvetica, Arial, sans-serif;
    font-size: 16px;
}

body {
    margin: 0;
    min-width: 100%;
    min-height: 100vh;
    background-color: white;
    color: black;
    transition: margin-bottom 1000ms ease;
}

main {
    min-height: 100%;
}

h1, h2, h3, h4, h5, h6, p, caption, a {
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
}

a,
a:hover,
a:active,
a:focus,
a:focus-within,
a:focus-visible,
a:visited {
    display: block;
    text-decoration: none !important;
    cursor: pointer;
    color: black !important;
}

button {
    display: block;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    text-align: left;
    color: black;
}

select, 
select:focus,
select:focus-visible,
button,
button:focus,
button:focus-visible {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
}
select::-ms-expand {
    display: block;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul li, ul dt, ul dd, dl li, dl dt, dl dd {
    margin: 0;
    display: block;
    height: fit-content;
}

dl dd {
    margin-bottom: 1em;
}

table th, table tr, table td {
    text-align: left;
}

small {
    font-size: 60%;
}

strong {
    font-weight: 500;
}

address {
    font-style: normal;
}

figure {
    margin: 0;
    margin-block: 0;
    margin-inline: 0;
    display: flex;
    flex-direction: column;
}

img {
    display: flex;
    width: 100%;
    height: auto;
}

video {
    width: 100%;
    height: auto;
}

caption {
    text-align: left;
}