*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    height: 100%;
}

html:focus-within {
    scroll-behavior: smooth;
}

body {
    text-rendering: optimizeSpeed;
    height: 100vh;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

ul[role="list"],
ol[role="list"] {
    list-style: none;
}

a {
    text-decoration: none;
}

a:not([class]) {
    text-decoration-skip-ink: auto;
}

img,
picture {
    max-width: 100%;
    display: block;
    margin: auto;
}

input,
button,
textarea,
select {
    font: inherit;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}
.flex {
    display: flex;
    justify-content: space-between;
}
.center {
    text-align: center;
}
.container {
    margin: 0 5%;
}

.container {
    max-width: 1200px;
    width: 95%;
    margin: auto;
}

@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;
    }
}

@media screen and (max-width: 900px) { 
    html {
        font-size: 50%;
    }
}
