html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: black;
    /* overflow: hidden; */
}

.bordered-box {
    width: calc(100% - 1dvh);
    height: calc(100% - 1dvh);
    border: solid white;
    border-width: 0.1dvh;
    box-sizing: border-box;
    /* Ensures that the border is included in the total width and height */
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.horizontal-separator {
    width: calc(100% - 1dvh);
    height: 0.1dvh;
    background-color: white;
    position: absolute;
    top: 8.3%;
    left: 0.5dvh;
    right: 0.5dvh;
}

.logo-button {
    position: absolute;
    top: 0.5dvh;
    left: 3.5dvh;
    width: 8dvh;
    height: 8dvh;
    opacity: 1;
    cursor: pointer;
}

.TS-PP-button {
    position: absolute;
    top: 2dvh;
    right: 3.5dvh;
    width: 5dvh;
    height: 5dvh;
    opacity: 0.5;
    cursor: pointer;

}

.explanation-button {
    position: absolute;
    top: 2dvh;
    right: 11.5dvh;
    width: 5dvh;
    height: 5dvh;
    opacity: 0.5;
    cursor: pointer;
}

@font-face {
    font-family: 'BeaufortForLOL-Bold';
    src: url('beaufortforlol-bold.otf') format('opentype');
}

@font-face {
    font-family: 'BeaufortForLOL-Regular';
    src: url('beaufortforlol-regular.otf') format('opentype');
}

.screenshot {
    display: none;
    position: absolute;
    top: 16dvh;
    left: 5dvw;
    right: 5dvw;
    width: 90dvw;
    height: 43dvh;
    object-fit: contain;

}


.leagueoflegendsselector {
    display: none;
    position: absolute;
    top: 64dvh;
    left: 5dvw;
    right: 5dvw;
    width: 90dvw;
    height: 9dvh;
    object-fit: contain;
}

/* .divider {
    display: none;
    position: absolute;
    top: 72dvh;
    left: 5dvw;
    right: 5dvw;
    width: 90dvw;
    height: 7dvh;
    object-fit: contain;
} */

.download_button {
    display: none;
    position: absolute;
    top: 79.5dvh;
    left: 5dvw;
    right: 5dvw;
    width: 90dvw;
    height: 7dvh;
    object-fit: contain;
	        cursor: pointer;
}

.footer {
    display: none;
    position: absolute;
    bottom: 1.5dvh;
    left: 5dvw;
    right: 5dvw;
    height: 4.5dvh;
    width: 90dvw;
    object-fit: contain;
}

.tspp,
.explanation {
    display: none;
    position: absolute;
    top: 9dvh;
    left: 1dvw;
    right: 1dvw;
    height: 89.5dvh;
    overflow-y: scroll;
    text-align: center;
    color: rgb(150, 150, 150);
    padding-right: 15dvw;
    padding-left: 15dvw;
    font-family: 'BeaufortForLOL-Regular';
}

.tspp p,
.explanation p {
    text-align: left;
}

.explanation img {
    width: 100%;
    /* Make image width responsive to the container size */
    height: auto;
    /* Maintain aspect ratio */
}

.halfimage img {
    width: 50%;
    /* Assuming you want it half the size relative to its original dimensions */
    height: auto;
    display: block;
    margin: 0 auto;
    /* Centers the image */
}

.quarterimage img {
    width: 25%;
    /* Assuming you want it half the size relative to its original dimensions */
    height: auto;
    display: block;
    margin: 0 auto;
    /* Centers the image */
}

#tenthimage img {
    width: 10%;
    /* Assuming you want it half the size relative to its original dimensions */
    height: auto;
    display: block;
    margin: 0 auto;
    /* Centers the image */
}

#temporaryfix img {
    width: 49.4%;
    /* Assuming you want it half the size relative to its original dimensions */
    height: auto;
    display: block;
    margin: 0 auto;
    /* Centers the image */
}

::-webkit-scrollbar-track {
    background: black;
    /* Optional: if you want rounded corners */
}

/* Style the scrollbar thumb (the part that you drag) */
::-webkit-scrollbar-thumb {
    background: rgb(150, 150, 150);
    /* Replace with the color you want */
    border-radius: 0.5dvw;
}

/* Style the scrollbar itself (width, etc.) */
::-webkit-scrollbar {
    width: 1dvw;
    /* The width of the scrollbar */
}

.mathsign {
    margin-top: 5px;
    /* Reduces the space above the sign, adjust the value as needed */
    margin-bottom: 5px;
    /* Reduces the space below the sign, adjust the value as needed */
    font-family: BeaufortForLOL-Bold;
    text-align: center;
    font-size: 40px;
    color: white;
}

.green-text {
    color: #00FF00;
}

.red-text {
    color: red;
}

.white-text {
    color: white;
}

.center-container {
    display: flex;
    justify-content: center;
    text-align: left;
    /* This ensures text inside the flex item aligns to the left */
}
