html {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

:root {
    --background-color: #111;
    --button-gradient: linear-gradient(25deg, rgb(132, 191, 254), #ffd1ff);
    --button-color: #fafafa;
    --button-alt-color: #5a5aff;
    --hover-button-link-color: gold;

    --background-different-shade-one: rgb(53, 53, 53);
    --background-different-shade-two: #222;
    --background-different-shade-three: #474747;

    --linear-gradient-for-tournament-banner: linear-gradient(210deg, #fed0fe, #84c1fe);
    --webkit-linear-gradient-for-tournament-leaderboard-text: -webkit-linear-gradient(260deg, #fed0fe, #84c1fe);
    --event-linear-gradient: -webkit-linear-gradient(260deg, var(--background-different-shade-one), var(--background-different-shade-two));

    --text-color: whitesmoke;
    --text-color-for-less-visible-text: gray;
}

:root[data-theme="dark"] {
    --background-color: #111;
    --button-gradient: linear-gradient(25deg, rgb(132, 191, 254), #ffd1ff);
    --button-color: #fafafa;
    --button-alt-color: #5a5aff;
    --hover-button-link-color: gold;

    --background-different-shade-one: rgb(53, 53, 53);
    --background-different-shade-two: #222;
    --background-different-shade-three: #474747;

    --linear-gradient-for-tournament-banner: linear-gradient(210deg, #fed0fe, #84c1fe);
    --webkit-linear-gradient-for-tournament-leaderboard-text: -webkit-linear-gradient(260deg, #fed0fe, #84c1fe);
    --event-linear-gradient: -webkit-linear-gradient(260deg, var(--background-different-shade-one), var(--background-different-shade-two));

    --text-color: whitesmoke;
    --text-color-for-less-visible-text: gray;
}

:root[data-theme="light"] {
    --background-color: whitesmoke;
    --button-gradient: linear-gradient(25deg, rgb(132, 191, 254), #ffd1ff);
    --button-color: #222;
    --button-alt-color: #5a5aff;
    --hover-button-link-color: gold;

    --background-different-shade-one: rgb(225, 225, 225);
    --background-different-shade-two: #dbdbdb;
    --background-different-shade-three: #aeaeae;

    --linear-gradient-for-tournament-banner: linear-gradient(210deg, #fed0fe, #84c1fe);
    --webkit-linear-gradient-for-tournament-leaderboard-text: -webkit-linear-gradient(260deg, #fed0fe, #84c1fe);
    --event-linear-gradient: -webkit-linear-gradient(260deg, var(--background-different-shade-one), var(--background-different-shade-two));
    
    --text-color: #222;
    --text-color-for-less-visible-text: gray;
}

:root[data-theme="navy"] {
    --background-color: #0c0b22;
    --button-gradient: linear-gradient(25deg, rgb(132, 191, 254), #ffd1ff);
    --button-color: #fafafa;
    --button-alt-color: #5a5aff;
    --hover-button-link-color: gold;

    --background-different-shade-one: rgb(30, 26, 62);
    --background-different-shade-two: #110f2e;
    --background-different-shade-three: #171441;

    --linear-gradient-for-tournament-banner: linear-gradient(210deg, #fed0fe, #84c1fe);
    --webkit-linear-gradient-for-tournament-leaderboard-text: -webkit-linear-gradient(260deg, #fed0fe, #84c1fe);
    --event-linear-gradient: -webkit-linear-gradient(260deg, var(--background-different-shade-one), var(--background-different-shade-two));

    --text-color: whitesmoke;
    --text-color-for-less-visible-text: gray;
}

:root[data-theme="crazy"] {
    --background-color: #ffadf6;
    --button-gradient: linear-gradient(25deg, rgb(132, 191, 254), #ffd1ff);
    --button-color: #fafafa;
    --button-alt-color: #5a5aff;
    --hover-button-link-color: gold;
    
    --background-different-shade-one: rgb(159, 146, 255);
    --background-different-shade-two: #d299da;
    --background-different-shade-three: #ffe78a;

    --linear-gradient-for-tournament-banner: linear-gradient(210deg, #fed0fe, #84c1fe);
    --webkit-linear-gradient-for-tournament-leaderboard-text: -webkit-linear-gradient(260deg, #fed0fe, #84c1fe);
    --event-linear-gradient: -webkit-linear-gradient(260deg, var(--background-different-shade-one), var(--background-different-shade-two));

    --text-color: #111;
    --text-color-for-less-visible-text: gray;
}

body {
    background: var(--background-color);
    color: var(--text-color);
    margin: 0;
}

header {
    width: 80%;
    margin: auto;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

header > div {
    display: flex;
    padding: 5px;
}

.header-profile-container {
    width: fit-content;
    display: flex;
    padding: 5px;
    background-color: var(--background-different-shade-one);
    border-radius: 20px;
    margin-left: auto;
    cursor: pointer;
}
.header-profile-container:hover {
    background-color: var(--background-different-shade-two);
}
.header-profile-container > div {
    align-content: center;
    display: flex;
}
.header-profile-container > div > img {
    display: inline-block;
}
.header-profile-container > div > img {
    height: 60px;
    width: 60px;
    background-size: contain;
    border-radius: 20px;
}


.expandable-profile-menu {
    border-radius: 15px;
    background-color: var(--background-different-shade-one);
    box-shadow: 0 0 5px 0 var(--background-different-shade-one);
    padding: 5px;
    margin-top: 5px;
    display: none;
    transition: ease-in-out 200ms;
}


.expandable-profile-menu > a {
    display: inline-block;
    background-color: var(--background-different-shade-one);
    text-decoration: none;
    padding: 5px;
    border-radius: 15px;
    box-shadow: 0 0 5px 0 var(--background-color);
    align-content: center;
    display: inline-grid;
}
.expandable-profile-menu > a:hover {
    background-color: var(--background-color);
}
.expandable-profile-menu > a > svg {
    align-content: center;
    display: grid;
    width: 32px;
    height: 32px;
}

#pfpHeader {
    background-image: url("/static/images/default_profile_pictures/diamond.jpg");
    background-size: contain;
    height: 60px;
    width: 60px;
    border-radius: 20px;
    padding: 5px;
}

#pfp {
    background-image: url("/static/images/default_profile_pictures/diamond.jpg");
    background-size: contain;
}

#guessrGamemodeThumbnails,
#quizGamemodeThumbnails {
    background-size: contain;
    width: 100%;
    aspect-ratio: 1/1;
    margin: -1px;
    padding: 1px;
    display: flex;
    align-content: center;
    justify-content: center;
    border-radius: 15px;
    margin-bottom: 5px;
}

#guessrGamemodeThumbnails {
    background-image: url("/static/images/gamemodeimages/guessrthumbnail.png");
}
#quizGamemodeThumbnails {
    background-image: url("/static/images/gamemodeimages/quizthumbnail.png");
}

#guessrGamemodeThumbnails > img,
#quizGamemodeThumbnails > img {
    scale: 0.75;
}

.profile-header-point-display {
    margin: 10px;
    display: flex;
    flex-direction: column;
} 
.profile-header-point-display > div {
    align-content: center;
}
.profile-header-point-display > div > span {
    font-size: large;
    font-weight: bold;
}
.profile-header-point-display > div > h4 {
    margin: 0;
    margin-bottom: 5px;
    font-family: monospace;
    font-size: large;
    font-family: 'Courier New', Courier, monospace;
}
.point-display {
    display: flex;
}
.point-display > div {
    margin-left: auto;
    margin-right: auto;
    flex: auto;
}
.point-display > span > div {
    font-weight: bold;
    margin-right: 2px;
    color: #7b7bff;
}
.point-display > span {
    display: flex;
    margin-left: auto;
}

#guessrCoin > g {
    fill: #7b7bff;
}



.logo-header-display {
    background-color: var(--background-different-shade-one);
}

.logo-header-display > a > svg > g {
    fill: var(--text-color);
}

.header-profile-container-wrapper {
    width: fit-content; 
    margin-left: auto;
}

.header-logo-container {
    text-align: justify;
}
.header-content-container {
    text-align: center;
}
.user-content-container {
    text-align: end;
    align-content: center;
}

.header-content-container {
    margin-left: 10px;
    margin-right: 5px;
    display: none;
}

.header-content-container > a:link {
    color: rgb(0, 238, 255);
}


.header-content-container > a {
    padding: 12px;
    border-radius: 10px;
    transition: ease-in-out 200ms;
}

.header-content-container > a:hover {
    background-color: #0000002f;
}

.login,
.register {
    padding: 12px;
    background-image: transparent;
    border: solid 3px var(--button-color);
    color: var(--button-color);
    text-decoration: none;
}

.register {
    background-color: var(--button-color);
    color: var(--background-color);
}

.login:hover,
.register:hover {
    border-color: rgb(60, 60, 255);
    color: rgb(60, 60, 255);
    transition: ease-in-out 100ms;
}

.login:hover {
    border-color: rgb(255, 60, 60);
    color: rgb(255, 60, 60);
}

.register:hover {
    background-color: rgb(60, 60, 255);
    color: #fafafa;
}

h1, h2, h3, h4, h5 {
    color: var(--text-color);
}

a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: bold;
}

.www {
    height: fit-content;
    width: 80%;
    margin: auto;
    display: flex;
    flex-direction: column;
    margin-top: 125px;
}

.www > a{
    text-decoration: none;
    padding: 10px;
    background-color: var(--background-different-shade-one);
    border-radius: 20px;
}


.guessr-comp-title {
    font-size: x-large;
    font-weight: 500;
    margin-left: 10px;
}

.guessr-comp-title,
.index-section-title {
    margin-left: 5px;
}

.guessr-comp-banner {
    background-image: var(--event-linear-gradient);
    height: 100%;
    width: 100%;
    display: flex;
    border-radius: 20px;
    padding: 20px 0px 20px 0px;
    color: var(--text-color);
}

.guessr-comp-banner > div {
    flex: 1;
    align-content: center;
    justify-items: center;
    min-height: 100px;
}

#frontPage {
    flex-direction: column;
}

#frontPage > div {
    flex: 1;
}

#frontPage > .guessr-comp-image-logo > div {
    flex: 1;
    align-content: center;
    justify-content: center;
    text-align: center;
}

#frontPage > .guessr-comp-image-logo > div > img {
    width: unset;
    height: 150px;
}

#frontPage > .guessr-comp-image-logo > div > span {
    display: flex;
    width: fit-content;
    margin: auto;
}

#frontPage > .guessr-comp-image-logo > div > span > div {
    font-size: 50px;
    font-weight: 1000;
    font-family: monospace;
    margin: 10px;
}

#guessrCoinNumber {
    color: #7b7bff;
    align-content: center;
}

#usdcNumber {
    color: #3e73c4;
    align-content: center;
}

#frontPage > .guessr-comp-image-logo > div > span > svg {
    width: 50px;
}

.guessr-comp-wrapper {
    display: flex; 
    gap: 10px;
}

.guessr-comp-pedestal-container {
    display: flex;
}

.guessr-comp-pedestal-container > div {
    flex: 1;
    align-content: center;
    min-height: 200px;
}

.first-pedestal-user-image,
.second-pedestal-user-image,
.third-pedestal-user-image,
.pedestal-user-name,
.pedestal-points-time {
    display: block;
    width: 80%;
    margin: auto;
    margin-top: 10px;
}

.pedestal-pedestal {
    width: 95%;
    height: 20%;
    border-radius: 8px;
    box-shadow: inset 0 0 10px 0 rgb(170, 170, 170);
    background-color: rgb(30, 30, 30);
    margin: auto;
    margin-bottom: 10px;
}

.first-pedestal-user-image,
.second-pedestal-user-image,
.third-pedestal-user-image {
    border-radius: 999px;
    height: 80px;
    width: 80px;
}


.first-pedestal-user-image {
    width: 100px;
    height: 100px;
    border: 3px solid gold;
    box-shadow: 0 0 20px 0 rgb(255, 224, 48);
}

.second-pedestal-user-image {
    border: 3px solid silver;
    box-shadow: 0 0 12px 0 rgb(216, 216, 216);
}

.third-pedestal-user-image {
    border: 3px solid #ce8946;
    box-shadow: 0 0 10px 0 #f7a655;
}

#first-pos-pedestal {
    height: 30%;
}

#second-pos-pedestal {
    height: 20%;
}

#third-pos-pedestal {
    height: 15%;
}

.pedestal-user-name {
    width: 90%;
    text-align: center;
    font-family: monospace;
    font-size: large;
}

.pedestal-points-time {
    text-align: center;
}

.pedestal-points-time > span {
    margin: auto;
    display: block;
    font-weight: bold;
}

.guessr-comp-play-button-container {
    display: inline-grid;
}

.guessr-comp-image-logo {
    display: flex;
    align-content: center;
    justify-content: center;
}

.guessr-comp-image-logo > img {
    width: 35%;
}

.guessr-comp-time-left-container > span,
.guessr-comp-time-left-container > div {
    display: block;
}

.guessr-comp-time-left-container > span {
    font: xx-large;
}

.guessr-comp-time-left-container > div {
    font-size: xx-large;
    font-family: monospace;
    font-weight: bold;
}



.lll {
    margin: auto;
    width: 80%;
    margin-top: 25px;
}

.lll > div {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 10px;
    background-color: var(--background-different-shade-two);
    padding: 10px;
    border-radius: 20px;
}

.lll > div > a {
    background-color: var(--background-different-shade-one);
    border-radius: 20px;
    overflow: hidden;
    padding: 10px;
    transition: ease-in-out 200ms;
}

.lll > div > a:hover {
    transform: scale(1.02);
}


.lll > div > a > img {
    width: 100%;
    background-image: linear-gradient(210deg, aquamarine, hotpink);
    border-radius: 15px;
}

.lll > div > a > div {
    text-align: center;
}

.index-section-title {
    font-size: x-large;
    font-weight: 500;
}

.tournament-top-three-container {
    width: 100%;
    height: fit-content;
    background-color: var(--background-color);
    margin: auto;
    display: flex;
    box-shadow: 0 0 15px 0 var(--background-different-shade-one);
    border-radius: 25px;
    padding: 20px 0 20px 0;
}

.tournament-top-three-container > div {
    flex: 1;
    align-content: center;
    align-items: center;
    margin: auto;
    width: 100%;
    height: 100%;
    text-align: center;
}

.tournament-top-three-container > div > span {
    display: block;
}

.tournament-top-three-container > div > img {
    border-radius: 999px;
    width: 30%;
    aspect-ratio: 1/1;
}

#first-place > img {
    width: 35%;
    border: ridge 5px gold;
}
#second-place > img {
    width: 30%;
    border: ridge 5px silver;
}
#third-place > img {
    width: 25%;
    border: ridge 5px #ce8946;
}

.hi {
    font-size: large;
    font-weight: bold;
}

#first-place > .hi {
    color: gold;
    text-shadow: 0 0 10px gold;
}
#second-place > .hi {
    color: silver;
    text-shadow: 0 0 10px silver;
}
#third-place > .hi {
    color: #ce8946;
    text-shadow: 0 0 10px #ce8946;
}

.play-tournament-button {
    height: fit-content;
    margin: auto;
    background-color: #2a2aff;
    text-decoration: none;
    padding: 18px 36px;
    font-size: large;
    border-radius: 10px;
}

table {
    box-shadow: 0 0 15px 0 var(--background-color);
    width: 100%;
    max-height: 1000px;
    overflow: scroll;
    background-color: var(--background-color);
    border-radius: 10px;
    font-size: 15px;
}

th, td {
    text-align: left;
    padding: 5px;
}

tr > #position {
    width: 3ch;
    max-width: 3ch;
    text-align: center;
    font-weight: bold;
}

tr > #board-pfp {
    width: 75px;
    max-width: 75px;
    text-align: center;
}

tr > #board-pfp > img {
    width: 50px;
    height: 50px;
    border-radius: 999px;
    margin: auto;
    background-image: url("/static/images/default_profile_pictures/diamond.jpg");
    background-size: contain;
    padding: 2px;
}

tr > #user {
    line-break: anywhere;
    font-weight: bold;
}

#user > .stick-out-showcase {
    font-size: 15px;
}

#user {
    font-size: 15px;
}

tr > #score {
    width: 5ch;
    max-width: 5ch;
}

tr > #time {
    width: 11ch;
    max-width: 11ch;
}

tr > #date {
    width: 14ch;
    max-width: 14ch;
    font-weight: bold;
}

.guessr-container {
    width: 80%;
    margin: auto;
    margin-top: 125px;
}

.pedestal-username-text {
    font-weight: bold;
    width: 95%;
    max-height: fit-content;
    margin: auto;
    line-break: anywhere;
    margin-top: 10px;
    font-family: monospace;
    font-size: large;
}

.tournament-leaderboard-container {
    background-color: var(--background-different-shade-one);
    padding: 15px;
    border-radius: 25px;
}

.tournament-leaderboard-container > h1 {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.game-mode-choice-container {
    display: flex;
    position: relative;
    top: 125px;
}

.game-mode-choice-container > div {
    flex: 1;
    display: grid;
    padding: 20px;
}

.game-mode-choice-container > div > a {
    width: 90%;
    max-width: 500px;
    background-color: var(--background-different-shade-one);
    border-radius: 20px;
    overflow: hidden;
    transition: ease-in-out 200ms;
    text-decoration: none;
    margin: auto;
}

.game-mode-choice-container > div > a > img {
    width: 100%;
    background-image: linear-gradient(210deg, aquamarine, hotpink);
    border-radius: 15px;
    aspect-ratio: 1/1;
}

.game-mode-choice-container > div > a > div {
    text-align: left;
}

.game-mode-choice-container > div > a:hover {
    transform: scale(1.02);
}

.game-mode-choice-container > div > a > div > h3 {
    text-align: center;
}

.game-mode-choice-container > div > a > div > span {
    text-align: center;
    display: block;
}

@media screen and (max-width: 1000px) {
    .guessr-comp-banner {
        flex-direction: column;
    }
    .guessr-container, .www, .lll {
        width: 100%;
    }
    header {
        width: 100%;
    }
    th, td {
        padding: 5px;
    }
    table {
        font-size: small;
    }
    tr > #date {
        display: none;
    }
    .game-mode-choice-container {
        flex-direction: column;
    }

    #first-place > img {
        width: 50%;
        border: ridge 2px gold;
    }
    #second-place > img {
        width: 40%;
        border: ridge 2px silver;
    }
    #third-place > img {
        width: 35%;
        border: ridge 2px #ce8946;
    }
}

.quiz-container {
    background-color: var(--background-color);
    padding: 20px;
    border-radius: 15px;
}

.quiz-link > a {
    padding: 15px;
    background-color: var(--background-different-shade-one);
    display: flex;
    font-size: larger;
    align-content: center;
    text-decoration: none;
    border-radius: 10px;
    margin-bottom: 0.5rem;
}

.quiz-done-not-done-element {
    height: 30px;
    width: 30px;
    display: inline-block;
    overflow: hidden;
    margin-left: 5px;
}

.quiz-done-not-done-element > img {
    background-color: #f7a655;
    width: 100%;
}

.quiz-title {
    height: fit-content;
    display: inline-block;
    align-self: center;
    margin-left: 20px;
}

.sign-in-to-unlock {
    background-color: var(--background-different-shade-one);
    padding: 20px;
    box-shadow: inset var(--background-color) 0 0 5px 0px;
    border-radius: 10px;
    font-weight: bold;
}

.sign-in-to-unlock > a {
    color: gold;
}

.sign-in-to-unlock > ul > li {
    font-weight: 500;
    list-style-type: square;
    list-style-position: inside;
}

.stick-out-showcase {
    font-weight: bold;
    background: -webkit-linear-gradient(90deg, #776818, yellow, #b59800);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: large;
    text-shadow: 0 0 10px gold;
}

.quiz-question-correctness {
    display: inline-block;
    align-self: center;
    font-weight: lighter;
    color: var(--text-color-for-less-visible-text);
    margin-left: auto;
}

.go-to-sub-plan-link {
    background-color: var(--button-alt-color);
    box-shadow: var(--background-color) 0 0 10px;
    text-decoration: none;
    font-size: larger;
    padding: 10px;
    display: block;
    width: fit-content;
    border-radius: 5px;
    margin-left: 40px;
    font-weight: 500;
    transition: ease-out 200ms;
    color: whitesmoke;
}

.go-to-sub-plan-link:hover {
    transition: ease-in-out 200ms;
    box-shadow: var(--button-alt-color) 0 0 10px;
}

.quiz-game-container {
    margin: auto;
    margin-bottom: 10px;
    padding: 10px;
    background-color: var(--background-different-shade-one);
    border-radius: 20px;
}

.quiz-game-container > div {
    width: fit-content;
    background: var(--background-different-shade-one);
    margin: auto;
    width: 100%;
}

.quiz-game-container > div > label {
    display: flex;
    background-color: var(--background-color);
    padding: 15px;
    border-radius: 15px;
    cursor: pointer;
    transition: ease-out 200ms;
    height: fit-content;
    margin-top: 10px;
}

.quiz-game-container > div > label:hover {
    transition: ease-in 200ms;
    transform: scale(1.005);
}

.quiz-checkbox-input {
    appearance: none;
    background-color: transparent;
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 1.75em;
    height: 1.75em;
    border: 0.2em solid currentColor;
    border-radius: 50%;

    display: grid;
    place-content: center;
    align-self: center;
}

.quiz-checkbox-text {
    margin-left: 10px;
    align-self: center;
    font-size: large;
    font-weight: 500;
    width: 80%;
    word-break: break-word;
}

.quiz-checkbox-input::before {
    content: "";
    width: 1em;
    height: 1em;
    border-radius: 50%;
    transform: scale(0);
    transition: ease-out 200ms;
    box-shadow: inset 1em 1em currentColor;
}

.quiz-checkbox-input:checked::before {
    transition: ease-in 200ms;
    transform: scale(1);
}

.potential-quiz-image {
    background-color: bisque;
    aspect-ratio: 1.5/1;
    width: 99%;
    margin: auto;
    border-radius: 15px;
    margin-top: 5px;
}

.quiz-submit-button {
    width: 100%;
    border: none;
    font-size: large;
    padding: 10px;
    border-radius: 15px;
    cursor: pointer;
    font-weight: bold;
    color: whitesmoke;
    background-color: var(--button-alt-color);
    transition: ease-out 300ms;
}

.quiz-submit-button:hover {
    transition: ease-in 300ms;
    background-color: #2a2aff;
    box-shadow: #2a2aff 0 0 10px 0;
    scale: 1.005;
}

.question-result-container {
    padding: 10px;
    background-color: var(--background-different-shade-one);
    border-radius: 20px;
    font-size: large;
}

.question-result {
    margin-bottom: 10px;
    background-color: var(--background-color);
    border-radius: 15px;
    font-size: medium;
}

.question-result-strong-correct,
.question-result-strong-wrong {
    width: fit-content;
    padding: 3px 6px;
    display: block;
    border-radius: 7px;
    background-color: var(--background-different-shade-one);
}

.question-result-strong-correct {
    color: lime;
}
.question-result-strong-wrong {
    color: rgb(255, 48, 48);
}

.quiz-result-score-number {
    text-align: center;
    font-size: 50px;
    text-shadow: 0 0 100px var(--text-color);
}

.quiz-result-score-percentile {
    font-weight: 500;
    text-align: center;
    margin: auto;
}

.header-logo-container > svg > g {
    fill: var(--text-color);
}

.guessr-game-map-image {
    border-radius: 20px 20px 0px 0px;
}
.guessr-game-map-selection {
    width: 100%;
    background-color: transparent;
    color: var(--text-color);
    padding: 10px;
    border-radius: 0px 0px 10px 10px;
    border: solid 1px #7b7b7b;
    box-shadow: var(--text-color) 1px 1px 5px -3px;
    font-weight: bold;
    font-size: large;
    cursor: pointer;
}
.start-guessr-game-container > a,
.start-guessr-game-container > button {
    width: 100%;
    display: block;
    text-align: center;
    background-image: var(--linear-gradient-for-tournament-banner);
    color: #111;
    font-size: x-large;
    text-decoration: none;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 10px;
    font-weight: 500;
    margin-bottom: 20px;
}

.start-guessr-game-container > button {
    border: none;
    background-image: linear-gradient(1deg, gray, lightgray);
}

.start-guessr-game-container {
    margin-top: 20px;
}

/* Guessr Game Page */

#map {
    width: 400px;
    height: 400px;
    background-color: #037d9d;
    position: relative;
    border-radius: 15px;
    cursor: crosshair;
}
#image {
    max-width: 50%;
    margin-bottom: 10px;
}
#submit {
    width: 100%;
    padding: 10px;
    font-size: large;
    font-weight: bold;
    color: #111;
    background-image: var(--linear-gradient-for-tournament-banner);
    border: none;
    cursor: pointer;
    transition: ease-in-out 200ms;
    border-radius: 10px;
    margin-top: 10px;
}
#submit:hover{
    filter: hue-rotate(30deg) contrast(200%);
}
.guessr-game-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.guessr-map-container {
    width: fit-content;
    height: fit-content;
    background-color: var(--background-different-shade-one);
    border-radius: 20px;
    padding: 10px;
    overflow: hidden;
    position: absolute; bottom: 10px; left: 10px;
    opacity: 50%;
    transition: ease-in-out 100ms;
}

.guessr-map-container:hover {
    opacity: 100%;
}

#round-results {
    background-color: var(--background-different-shade-one);
    font-size: large;
    width: fit-content;
    border-radius: 20px;
}
#round-results > p {
    margin: 0;
    margin-bottom: 5px;
}
.round-count {
    width: fit-content;
    height: fit-content;
    position: absolute;
    top: 10px;
    right: 10px;
    margin: 0;
    background: var(--webkit-linear-gradient-for-tournament-leaderboard-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.register-to-save-guessr-score-btn {
    width: 100%;
    background-color: silver;
    padding: 10px;
    font-size: large;
    border-radius: 10px;
    font-weight: 1000;
    background-image: var(--linear-gradient-for-tournament-banner);
    border: solid 2px silver;
    cursor: pointer;
    color: var(--text-color);
    text-transform: uppercase;
}

/* Guessr Game Page End */

.guessr-game-wrapper {
    display: flex;
    flex-direction: column;
}

@media screen and (max-device-width: 1280px) {
    .guessr-map-container {
        opacity: 100%;
    }
    .guessr-map-container > #map {
        width: 350px;
        height: 350px;
    }
}

@media screen and (max-device-width: 800px) {
    .guessr-game-container {
        position: relative;
        aspect-ratio: 16/9;
    }
    .guessr-map-container {
        position: relative;
        left: 0;
        bottom: 0;
        padding: 0;
        width: 100%;
        border-radius: 0;
        opacity: 100%;
        background-color: #0c0b22;
    }
    .guessr-map-container > #map {
        width: 100%;
        border-radius: 0;
        height: 1000px;
    }
    #submit {
        width: 100%;
        font-size: xxx-large;
        font-weight: bold;
        color: #111;
        background-image: var(--linear-gradient-for-tournament-banner);
        border: none;
        cursor: pointer;
        transition: ease-in-out 200ms;
        border-radius: 0px;
        margin-top: 0px;
        padding: 30px;
    }
    #round-results {
        font-size: xx-large;
        width: 100%;
        border-radius: 0px;
    }
}

@media screen and (max-width: 800px) {
    .login,
    .register {
        width: 67%;
        padding: 5px;
        display: inline-block;
        margin-left: 25%;
        margin-bottom: 5px;
        margin-right: 5px;
    }
    .quiz-result-score-percentile {
        width: 90%;
    }
    .tournament-top-three-container {
        display: none;
    }
    .guessr-comp-wrapper {
        flex-direction: column;
    }
    .guessr-comp-pedestal-container {
        display: none;
    }
    tr > #board-pfp {
        width: 55px;
    }
    #user > .stick-out-showcase {
        font-size: small;
    }

    #user {
        font-size: small;
    }
}

@media screen and (max-width: 600px) {
    .quiz-game-container > div > label {
        padding: 10px;
    }
    .question-result > div {
        font-size: small;
    }
    .question-result > div > g {
        height: 50%;
        width: 50%;
    }
    .header-content-container {
        display: none;
    }

    .profile-page-profile {
        flex-direction: column;
    }
    .profile-page-user-info {
        padding: 5px;
    }
    #profileNameDisplay {
        font-size: large;
    }
}

@media screen and (max-width: 500px) {
    tr > #time {
        display: none;
    }
    .sign-in-to-unlock > ul {
        margin-left: -20px;
    }
    .go-to-sub-plan-link {
        margin: auto;
    }
    .profile-header-point-display > div > h4 {
        font-size: medium;
    }
}

.errorlist {
    padding: 0;
    list-style: none;
    font-weight: bold;
    float: right;
    height: 0px;
}
