﻿/* Fullscreen background */
.quiz-bg {
    background: url('/images/Background.png') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
}

/* Translucent overlay for readability */
.quiz-overlay {
    /*background: rgba(255, 255, 255, 0.85);*/
    /*backdrop-filter: blur(4px);*/
    min-height: 100vh;
}

/* Center cards and balloon */
.card {
    box-shadow: 0 0 15px rgba(0,0,0,0.15);
    border-radius: 12px;
}

/* Speech bubble */
.speech-bubble {
    color: #fff;
    background: #2f5eb2;
    border-radius: 12px;
    margin-top: 30px;
    padding: 16px 20px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.speech-bubble:after {
    content: "";
    position: absolute;
    left: -29px;
    top: 24px;
    border-width: 15px;
    border-style: solid;
    border-color: transparent #2f5eb2 transparent transparent;
}

/* Results */
.top-result {
    background: #2f5eb2;
    color: #fff;
}

/* Center container narrower on large screens */
.quiz-container {
    max-width: 850px;
    margin: 0 auto;
    width: 100%;
}

#characterImg {
    height: 350px;
    width: auto;
}

#ncj-logo {
    height: 5vh;
    width: auto;
    margin-bottom: 30px;
    margin-right: 30px;
}
