* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    background: #18181a;
    color: #e6c16a;
    font-family: "Montserrat";
    height: 110%;
}

a {
    color: #e6c16a;
}

a:visited {
    color: #946528;
}

svg {
    overflow: visible;
}

textarea {
    display: block;
    margin: auto;
    min-height: 10em;
    min-width: 30em;
    max-height: 30em;
    max-width: 90em;
}

.fit-content-centered {
    width: fit-content;
    margin: auto;
}

.horizontal-list {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

#title {
    margin-top: 160px;
}

*[class*="instagram"] {
    width: 40%;
    position: unset !important;
}


#banner {
    align-items: center;
    display: flex;
    flex-direction: row;
    gap: 100px;
    justify-content: center;
    margin: 0;
    padding: 0;
    position: fixed;
    top: 0;
    transition: all 0.2s linear;
    width: 100%;
    z-index: 100;
}

.banner-expanded {
    height: 160px;
}

.banner-stickied {
    background: #7d7575;
    height: 48px;
}

#banner * {
    height: 100%;
}

#banner .logo {
    fill: #e6c16a;
    stroke: #e6c16a;
}


.counter-digit {
    height: 1lh;
    width: fit-content;
    background: red;
    overflow: hidden;
}

.counter-digit-col {
    position: relative;
    top: 0lh;
}

#counter-list {
    width: fit-content;
}

#counter-list li {
    margin: 0 10px 0 10px;
}

#view-counter {
    color: blue;
}

#heart-counter {
    color: red;
}

#money-counter {
    color: green;
}


.menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 0 10px;
    margin: auto;
    margin-top: 10px;
    max-width: 50vw;
    outline: 2px solid #e6c16a;
}

.menu * { transition: all 0.2s ease; }

.menu dt {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.menu dd {
    margin: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0px 50px;
}

.menu dd > * { margin: 0; }

.menu-expanded dd {
    opacity: 1;
    margin-top: 10px;
}

.inline-toggle-spinner {
    aspect-ratio: 1/1;
    fill: #e6c16a;
    overflow: visible;
    stroke-width: 0px;
    stroke: none;
    width: 2em;
    margin: auto 1ch auto 1ch;
}


@media (max-width: 1000px) {
    *[class*="instagram"] { width: 80%; }
    .menu { max-width: 80vw; }
}
