*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    color: rgb(255, 0, 0, 0.5);
    font-family: sans-serif;
    font-size: 16px;
}

*::-webkit-scrollbar {
    display: none;
}

hr {
    margin: 3rem 0;
    border: 5px solid rgb(255, 0, 0, 0.5);
}

section {
    max-width: 100vw;
}

li {
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
}

/* ============ Utils ============ */

.placeholder{
    outline: 1px solid rgb(255, 0, 255, 0.8);;
    background-color: rgb(255, 0, 0, 0.5);;
    color: rgb(0, 0, 0, 1);
    font-family: monospace;
}

.hide {
    display: none !important;
}

.full-width{
    width: 100vw;
}

.button {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    color: rgb(var(--clr-text-dark));
    background: rgb(var(--clr-accent));
    white-space: nowrap;
}
.button:hover, .button:focus{
    border-radius: 0.5rem;
    color: rgb(var(--clr-text-dark));
    background: rgb(var(--clr-neutral));
    box-shadow: 3px 3px 6px 4px #0000001b;
}

.hidden {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
