@font-face {
    font-family: "bbr-medium";
    src: url('../assets/twelveBBRMedium.ttf');
}

body {
    background-color: #E6E3D6;
}

text {
    font-family: "bbr-medium", Helvetica, Arial, sans-serif;
    font-size: 22px;
    pointer-events: none;
    text-align: center;
    color: white;
}

img {
    position: relative;
    width: auto;
    height: 62px;
    margin: 20px 20px;
}

h3 {
    font-family: "bbr-medium", Helvetica, Arial, sans-serif;
    color: rgb(177, 167, 167);
    font-size: 40px;
    position: relative;
    margin: 0px auto 20px auto;
    font-weight: bold;
}

.header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.spin-container {
    text-align: center;
    padding: 20px;
}

.spin-container h1 {
    font-family: "bbr-medium", Helvetica, Arial, sans-serif;
    color: #043057;
    font-size: 32px;
    margin-bottom: 15px;
}

.spin-subtitle {
    font-family: "bbr-medium", Helvetica, Arial, sans-serif;
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}


.spinner-container {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
}

#chart {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#chart svg {
    width: 100%;
    height: 100%;
}

#question {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 90%;
    height: 90%;
    background-color: white;
    border-radius: 50%;
    border: solid white 8px;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0px;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s linear;
    cursor: pointer;
    z-index: 10;
}

#question h1 {
    font-size: clamp(24px, 8vw, 55px);
    color: #043057;
    font-weight: bold;
    font-family: "bbr-medium", Helvetica, Arial, sans-serif;
    text-align: center;
    position: absolute;
    width: 100%;
    padding: 0;
    margin: 0 auto;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

#question h2 {
    font-size: clamp(18px, 6vw, 40px);
    color: #BF042B;
    font-weight: bold;
    font-family: "bbr-medium", Helvetica, Arial, sans-serif;
    text-align: center;
    position: absolute;
    padding: 0;
    margin: 0;

    top: 30%;
    width: 100%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.bottom-text {
    text-align: center;
    margin-top: 0px;
    padding: 0px;
    font-family: "bbr-medium", Helvetica, Arial, sans-serif;
    color: #666;
}

.bottom-text small {
    font-size: 12px;
    line-height: 1;
}

.date-highlight {
    color: #BF042B;
    font-weight: bold;
}