.custom-menu-div {
    position: relative;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 100px;
    margin-left: auto;
    margin-right: auto;
    width: 1000px;
    height: 650px;
    background-color: var(--verylightxl);
    border-radius: 50px;
    border: 5px solid var(--light);
}
.custom-menu-container {
    position:relative;
    width:1000px;
    height:650px;
}
div.custom-menu-container {
    position: relative;
}
.button-container {
    position: relative;
    overflow: visible;
    margin: auto;
    width: 800px;
    height: 400px;
}
button#world-button {
    left: 0%;
}
button#submit-button {
    right: 0%;
}
button#submit-button, button#world-button {
    position: absolute;
    top: 50px;
    z-index: 1200;
    width: auto;
    height: auto;
    background-color: var(--verylight);
    border: 4px outset var(--verylight);
    border-radius: 20px;
    font-weight: bold;
    color: var(--dark);
    font-size: 30px;
    font-family: var(--font);
}
button#submit-button:active, button#world-button:active {
    background-color: #b87400;
    border-style: inset;
}
button#submit-button:hover, button#world-button:hover {
    background-color: var(--light);
}
path#slider-track {
    stroke: var(--dark);
    stroke-width: 7px;
    stroke-linecap: round;
}
input[type="range"]#guesses-input {
    transform-origin: 10px center;
    transform: rotate(var(--rotateangle));
    width: calc(var(--thumbsize) + 277.5px);
    height: 7px;
    background: transparent;
    outline: none;
    position: absolute;
    margin-left: calc(var(--thumbsize)/-2);
    top: 50px;
    left: 50%;
    z-index: 1001;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    -ms-appearance: none;
    appearance: none;
}
input[type="range"]#guesses-input::-webkit-slider-thumb {
    -webkit-appearance: none;
}
input[type="range"]#guesses-input::-webkit-slider-thumb {
    width: var(--thumbsize);
    height: var(--thumbsize);
    background-color: #cc8100;
    border-radius: 50%;
    border: #f7a400 groove 5px;
}
input[type="range"]#guesses-input::-moz-range-thumb {
    width: var(--thumbsize);
    height: var(--thumbsize);
    background-color: #cc8100;
    border-radius: 50%;
    border: #f7a400 groove 5px;
}
input[type="range"]#guesses-input::-ms-thumb {
    width: var(--thumbsize);
    height: var(--thumbsize);
    background-color: #cc8100;
    border-radius: 50%;
    border: #f7a400 groove 5px;
}
.continents-svg-container {
    position: absolute;
    left: 0;
    right: 0;
    margin: -50px auto;
    text-align: center;
    background-color: #cc8100;
    width: 800px;
    height: 800px;
    clip-path: ellipse(400px 280px);
    z-index: 989;
}
.text-svg-container {
    position: absolute;
    left: 0;
    right: 0;
    margin: -70px auto;
    text-align: center;
    width: 800px;
    height: 400px;
    z-index: 1000;
    pointer-events: none;
}
g.off-focus {
    fill: #ffffff;
}
g.selected {
    fill: var(--dark);
}
svg g.off-focus:hover {
    fill: #ffbb33;
}
textPath#curvy-textpath, textPath#curvy-guesses-textpath {
    font-size: 50px;
    fill: #000000;
    font-family: Georgia, Times, serif;
}