:root {
    --color-white: #e1e0e0;
    --color-blue: #2196F3;
    --color-green: #26d07c;
    --color-purple: #6599ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    cursor: default;
}

main {
    width: 100%;
    min-height: 50vh;
    padding: 16rem 1rem 0;
}

a,
a:active,
a:focus,
a:visited {
    color: black;
    text-decoration: none;
    cursor: pointer;
    transition: color 300ms;
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

ul li,
ul dt,
ul dd,
dl li,
dl dt,
dl dd,
ol li,
ol dt,
ol dd {
    display: block;
    height: fit-content;
    list-style: none;
}