#help-markerless {
    position: absolute;
    width: 100svw;
    height: 100svh;
    color: var(--osuRed);
    display: flex;
    justify-content: center;
    align-items: center;
    right: 100svw;
    background-color: #fff;
    transition: right 0.5s ease-in-out;
    z-index: 200;
    top: 0;
}

#help-markerless > #help-markerless-container {
    position: absolute;
    margin: auto;
    top: 6svh;
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3svh;
    overflow: visible;
}

#help-markerless > #help-markerless-container > p {
    font-size: 2svh;
    font-weight: 100;
    font-family: "BuckeyeSans2";
    color: black;
    line-height: 3svh;
}

#help-markerless > #help-markerless-container > p > em {
    font-style: normal;
    font-weight: 900;
    color: black;
}

#help-markerless ul {
    width: 100%;
}

#help-markerless .help-markerless-bullet {
    position: relative;
    left: -4svw;
    top: 1.3svh;
    display: block;
    width: 0.73svh;
    height: 0.73svh;
    border-radius: 50%;
    background-color: black;
}

#help-markerless li {
    font-size: 2svh;
    font-weight: 100;
    font-family: "BuckeyeSans2";
    color: black;
    padding: 0.1vh 6vw;
}

#help-markerless > #help-markerless-container > #help-table {
    display: flex;
    align-items: center;
    justify-content: center;
}

#help-markerless > #help-markerless-container > #help-table > svg > g > text {
    font-family: "BuckeyeSans2";
}

#help-markerless button {
    font-size: 4svw;
    font-family: "BuckeyeSans2";
    color: white;
    background-color: var(--osuRed);
    border: none;
    padding: 1vh 5vw;
    cursor: pointer;
}

@media screen and (min-aspect-ratio: 4/5) {
    #help-markerless h1 {
            font-size: 3svh;
        }
    #help-markerless ul {
            font-size: 3svh;
        }
    #help-markerless button {
            font-size: 3svh;
    }
}