/* General Styles */
body {
    font-family: 'arial', sans-serif;
    background-color: #FFFFFF;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    justify-content: center; /* Center vertically */
}

#logo {
    position: absolute; /* Fix logo at the top */
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1; /* Ensure logo is above other content */
}

#logo img {
    width: 150px; /* Adjust size as needed */
    height: auto;
}

#app {
    width: 100%;
    max-width: 600px;
    background: #1e1e1e;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 50px;
    box-sizing: border-box;
    text-align: center;
    position: relative;
}

#app::before {
    content: '';
    position: absolute;
    top: -10px;
    bottom: -10px;
    left: -10px;
    right: -10px;
    background: linear-gradient(to right, blue, red);
    opacity: 40%;
    filter: blur(200px);
    z-index: -1;
    border-radius: 60px;
}

h1 {
    color: white;
}

h2 {
    color: white;
}

.resultyy {
    color: gray;
}

p {
    font-size: 16px;
    line-height: 1.5;
}

/* Button Styles */
button {
    background-color: #216BC0;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 30px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.5s ease;
}

button:hover {
    background-color: #69E0FF;
    color: #000;
    padding: 10px 55px;
}

/* Question and Choices Styles */
#question-page, #result-page {
    display: none;
}

#choices {
    margin-top: 20px;
}

.slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-label {
    width: 100px;
    margin: 0 10px;
}

.slider {
    -webkit-appearance: none;
    width: 300px;
    height: 10px;
    background: linear-gradient(to right, blue, red);
    outline: none;
    opacity: 0.5;
    transition: opacity .15s ease-in-out;
    border-radius: 5px;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: white;
    cursor: pointer;
    border-radius: 50%;
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: linear-gradient(to right, blue, red);
    cursor: pointer;
    border-radius: 50%;
}

/* Container Styles */
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container h2 {
    margin-bottom: 20px;
}

.container p {
    margin: 20px 0;
}

/* Footer Styles */
#footer {
    position: absolute;
    bottom: 20px;
    text-align: center;
    color: #e0e0e0;
    font-size: 14px;
}
