﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600&display=swap');

body {
    font-size: 14px;
}

:root {
    --background: 243.4deg 41.09% 25.29%;
    --foreground: 0 0% 100%;
    --card: 0 0% 100%;
    --card-foreground: 230.77deg 40.21% 19.02%;
    --primary: 197.97deg 100% 44.51%;
    --primary-foreground: 0 0% 100%;
    --cta: 152.18deg 68.75% 31.37%;
    --cta-foreground: 0 0% 100%;
    --border: 0deg 0% 86.67%;
    --input: 210 14% 89%;
    --radius: .5rem;

    --text-lg-size: 1rem;
    --text-xl-size: 1.25rem;
    --text-2xl-size: 1.5rem;
    --text-3xl-size: 1.75rem;
    --text-4xl-size: 2rem;
    --text-5xl-size: 2.25rem;
    --text-6xl-size: 2.5rem;
}

@media (prefers-color-scheme: dark) {
    :root:not(.light) {
        --primary: 197.97deg 100% 44.51%;
        --primary-foreground: 0 0% 100%;
        --cta: 152.18deg 68.75% 31.37%;
        --cta-foreground: 0 0% 100%;
    }

    .logo {
        filter: brightness(100);
    }
}

.logo {
    background-image: url(../images/logo.png);
        background-repeat: no-repeat;
        background-position: left center;
        background-size: contain;
        height: 50px;
        aspect-ratio: 620 / 229;
        margin: auto;
}

.text-secondary {
	color: hsl(var(--primary));
}

.bg-card .heading {
    --text-lg-size: 1rem;
    --text-xl-size: 1rem;
    --text-2xl-size: 1rem;
    --text-3xl-size: 1.25rem;
    --text-4xl-size: 1.5rem;
    --text-5xl-size: 1.75rem;
    --text-6xl-size: 2rem;
}

.prose h1,
.prose h2,
.prose h3,
.prose h4,
.prose h5,
.prose h6 {
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: .5em;
}

.prose h4,
.prose h5,
.prose h6 {
    font-size: 1rem;
}

.prose h1+*,
.prose h2+*,
.prose h3+*,
.prose h4+*,
.prose h5+*,
.prose h6+* {
    margin-top: 0;
}

body {
    background-color: hsl(var(--background));
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    font-weight: 300;
}

main {
    background-color: hsl(var(--background));
    background: linear-gradient(135deg, #d51f73, #29265b 50%, #2a2b5f 55%, #2e376c 65%, #305186 75%, #327ab1 90%, #3797d0);
}

a.go-back {
  --primary: var(--foreground);
}

strong {
    font-weight: bold;
}

.btn {
    border-radius: 5px;
}

.prose :where(p):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
    margin-top: 1em;
    margin-bottom: 1em;
}
.prose :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;
}
.prose :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-bottom: 0;
}

.score-card {
    border-radius: 0 !important;
}

/**
 ** Blazor default components
 **/
#components-reconnect-modal {
    background: linear-gradient(135deg, rgba(213 31 115 / 90%), rgba(41 38 91 / 90%) 50%, rgba(42 43 95 / 90%) 55%, rgba(46 55 108 / 90%) 65%, rgba(48 81 134 / 90%) 75%, rgba(50 122 177 / 90%) 90%, rgba(55 151 208 / 90%));

    --card: transparent;
    --card-foreground: --foreground;
}

#components-reconnect-modal .bg-card {
    max-width: 480px;
    text-wrap: balance;
}

#components-reconnect-modal .bg-card .heading {
    --text-xl-size: 1.25rem;
    /* 20px */
    --text-2xl-size: 1.5rem;
    /* 24px */
}