body {
    background-image: linear-gradient(to bottom right, #1f0845, #4f1d59);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;

    height: 100%;
    margin: 0;
}

.mainFocus {
    /* margin-left: auto;
    margin-right: auto; */
    position: relative;
    margin-top: 10%
}

.warning {
    margin-left: auto;
    margin-right: auto;
    
    text-align: center;
    width: 700px;
}

.win-title {
    position: relative;
    font-size: 30px;
    top: -63px;
    left: 5px;
    right: 5px;

    margin-bottom: -50px;
}

.optionsMenu {
    margin-top: 20px;
}

button {
    border-image-source: url("/assets/images/buttons/basic.png");

    border-image-slice: 12.5% fill;
    border-image-repeat: stretch;
    border-color: transparent;
    border-width: 20px;



    image-rendering: pixelated;
    /* border: none; */

    font-family: "PixeloidSans-Bold";
    font-size: 25px;
}

/* .dyslexia-menu {
    
} */
.dyslexia-menu {
    display: none;
    width: fit-content;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    font-size: 20px;
}
.dyslexic-choices {
    display: inline-flex;
}
.dyslexic-choices_other {
    width: 20px;
    display: none;
    position: relative;
    left: 86%;
}

.radio {
    margin-left: 5px;
    margin-right: 5px;
    cursor: pointer;
    font-size: 18px;
    user-select: none;
}

input[type="radio"]:hover {
    color: #8f8f8f;
}

button:hover {
    transform: scale(1.05);
}
button:active {
    transform: scale(1);
    border-image-source: url("/assets/images/buttons/basic-pressed.png");
}

.finish {
    margin: 10px;
    padding-right: 0;

    margin-left: auto;
    margin-right: auto;
}

.defaults {
    margin-right: 60px;
}

.proceed {
    margin-left: 60px;
    width: 400px;
}



/* Taken from W3Schools <:P */
/* Customize the label (the accessOptions) */

.accessOptions {
    display: inline-flex;  /* or flex */
    align-items: center;
    gap: 10px;
    position: relative;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    user-select: none;
    /* Remove padding-left, let gap handle spacing */
}

/* Hide the browser's default checkbox */
.accessOptions input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}



/* Create a custom checkbox */
/* .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #cecece;
} */

.checkmark {
    position: relative; /* Change from absolute */
    display: inline-block;
    height: 25px;
    width: 25px;
    background-color: #cecece;
    flex-shrink: 0;
}

/* On mouse-over, add a grey background color */
.accessOptions:hover input ~ .checkmark {
    background-color: #a5a5a5;
}

/* When the checkbox is checked, add a blue background */
.accessOptions input:checked ~ .checkmark {
    background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.accessOptions input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.accessOptions .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* also from W3School */

.tooltip {
    /* display: inline-block; */
    border-bottom: 1px dotted black; /* Add dots under the hoverable text */
    cursor: pointer;
}

/* Tooltip text */
.tooltiptext {
    visibility: hidden; /* Hidden by default */
    width: 110%;
    background-color: black;
    color: #ffffff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    position: absolute;
    z-index: 1; /* Ensure tooltip is displayed above content */

    bottom: -30%;
    left: -5%;
}

/* Show the tooltip text on hover */
.tooltip:hover .tooltiptext {
    visibility: visible;
}


@media (max-width: 50em) {
    .warning {
        width: 60%;
    }
}
@media (max-width: 40em) {
    .defaults {
        margin-right: 0;
    }
    .proceed {
        margin-left: 0;
    }
}