* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    font-family: "Geist", system-ui, "Apple SD Gothic Neo", sans-serif;
    line-height: 1.5;
    color: var(--gray-900);
    -webkit-font-smoothing: antialiased;
    background: #fff;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}