@font-face {
    font-family: "OpenSans";
    src: url("../fonts/OpenSans-VariableFont_wdthwght.ttf");
}

body {
    background-color: rgba(24, 26, 27, 255);
    color: rgb(235, 235, 235);
    margin: 0 auto;
    overflow-x: hidden;
    cursor: default;
    word-wrap: break-word;
    max-width: 1012px;
    font-family: "OpenSans";
}

a:link {
    color: rgb(255, 200, 200);
}

a:visited {
    color: rgb(255, 0, 0)
}

.header {
    display: block;
    position: relative;
    margin: 0 auto;
    text-align: center;
}

.title {
    display: block;
    position: relative;
    padding: 1%;
    font-size: 6vh;
}

.subtitle {
    display: block;
    white-space: pre-line;
    font-size: 2vh;
}

.navigation {
    display: block;
    position: relative;
    & > span {
        display: block;
        font-size: 4vh;
        text-align: center;
        padding-top: 2vh;
        font-weight: bold;
    }
}

ol {
    & > li {
        display: block;
        max-width: fit-content;
        transition: 0.3s ease-in-out;
        & > ul {
            & > li {
                display: block;
                transition: 0.3s ease-in-out;
                max-width: fit-content;
            }
            & > li::before {
                content: "- ";
                font-size: 2.3vh;
            }
            & > li:hover {
                background-color: rgba(255, 200, 200, 0.2);
                max-width: fit-content;
                max-height: min-content;
                border-radius: 15px;
                padding-left: 7.5px;
                padding-right: 7.5px;
                padding-top: 4px;
                padding-bottom: 5px;
                margin-top: 5px;
            }
        }
    }
    & > li:hover {
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 25px;
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 8px;
        padding-bottom: 10px;
        margin-top: 10px;
        max-width: fit-content;
        max-height: min-content;
    }
    counter-reset: item;
    & > li::before {
        content: counter(item, upper-roman) ". ";
        counter-increment: item;
        font-size: 2.5vh;
        color: rgb(255, 150, 150);
        text-decoration: underline white;
    }
}

.ordered {
    font-size: 2.5vh;
    text-decoration: underline;
    cursor: pointer;
}
.unordered {
    font-size: 2.3vh;
    cursor: pointer;
}

.custom-mixes {
    display: block;
    text-align: center;
    font-weight: bold;
    font-size: 4vh;
    padding-top: 2vh;
}

.custom-types {
    display: block;
    text-align: left;
    font-weight: bold;
    font-size: 3vh;
    padding-top: 2vh;
    padding-left: 20px;
}

.mix-part {
    display: grid;
    padding-left: 40px;
    min-height: min-content;
    grid-template-columns: 2fr 1fr;
    column-gap: 10px;
}

.mix-title {
    display: block;
    text-align: left;
    font-weight: bold;
    font-size: 2vh;
    padding-left: 40px;
}

.mix-list {
    & > li {
        display: block;

    }
}

.mix-img {
    display: block;
    width: 80%;
    margin-top: -35px;
    padding-bottom: 20px;
}

.eti-bad {
    display: grid;
    grid-template-columns: 1fr min-content 1fr;
    grid-template-rows: fit-content 1fr;
    gap: 10px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 20px;
    justify-items: center;
    align-content: center;
    & > img {
        width: 80%;
    }
    & > ul > p.version {
        font-weight: bold;
        font-size: 2.5vh;
        text-align: center;
        padding-right: 1.5em;
    }
    & > div.vr {
        width: 2px;
        background-color: white;
        opacity: 0.5;
    }
}

.ice-list {
    & > li {
        display: block;
        padding-left: 20px;
    }
    & > li::before {
        content: "- ";
    }
}