@font-face {
    font-family: 'PixelifySans';
    src: url(PixelifySans-VariableFont_wght.ttf);
}

body {
    font-family: 'PixelifySans', sans-serif;
    background-color: #D8E7FF;
    font-size: 20px;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 1000;
}

.dark {
    font-family: 'PixelifySans', sans-serif;
    background-color: #D8E7FF;
    font-size: 20px;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 1000;
}

.quiz-container {
    font-family: 'PixelifySans', sans-serif;
    text-align: center;
    font-size: 20px;
    background-color: #D8E7FF;
    color: #0b032d;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    font-weight: bold;
}

.dark-container {
    font-family: 'PixelifySans', sans-serif;
    text-align: center;
    font-size: 20px;
    background-color: #D8E7FF;
    color: #0011AD;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    font-weight: bold; 
}

h1 {
    font-family: 'PixelifySans', sans-serif;
    font-size: 28px;
    font-weight: bold; 

}
p{
    font-size: 20px;
}

p1{
    font-size: 10px;
}

.large-rectangular {
    font-family: 'Gill Sans', sans-serif;
    display: block;
    width: 80%;
    font-size: 20px;
    max-width: 400px;
    padding: 10px 20px;
    margin: 10px auto;
    background-color: #f7e6dd;
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.large-rectangular:hover {
    background-color: #0011AD;
    color: #fff;
}

#result {
    padding: 10px;
    background-color: #D8E7FF;
    display: none;
    width: 90%;
    max-width: 400px;
}

#quiz p{
    font-size: 22px;
    margin: 10px 0;

}
#result p {
    font-size: 18px;
    margin: 10px 0;
}

#quiz {
    font-size: 24px;
}

#quiz img {
    max-width: 100%;
    max-height: 300px;
    display: block;
    margin: auto;
    font-size: 24px;
}

question-image {
    max-width: 360px;
    height: auto;
    align-items: center;
    margin: 4px;
}

.keywords-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.keyword-bubble {
    background-color: #23282d;
    color: white;
    border-radius: 16px;
    padding: 4px 12px;
    margin: 4px;
    font-size: 14px;
}

.result-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.result-text {
    flex-grow: 1;
}

.result-image-container {
    margin-top: 20px;
    text-align: center;
    align-items: center;
}

.result-image img {
    max-width: 360px;
    /* max-height: 400px; - can add this in the future if needed */
    height: auto;
    align-items: center;
    margin: 4px;
    margin-top: 20px;
}


.start-button {
    font-family: 'PixelifySans', sans-serif;
    background-color: #0011AD; 
    border: none;
    color: #ffffff;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin-top: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.start-button:hover {
    background-color: #ffffff;
    color: #090808;
}


.restart-button {
    font-family: 'PixelifySans', sans-serif;
    background-color: #ffb997;
    border: none;
    color: rgb(0, 0, 0);
    padding: 15px 32px;
    text-align: center;
    font-size: 16px;
    margin-top: 20px;
    cursor: pointer;
    display: inline-block;
}

.restart-button:hover {
    background-color: #ffb997; 
    color: rgb(132, 107, 107);
}


.top-image {
    width: 100%;
    object-fit: cover;
}

.end-button {
    font-family: 'PixelifySans', sans-serif;
    background-color: #0011AD;
    color: #fff;
    padding: 20px;
    border: none;
    border-radius: 50%; /* Make it a circle */
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
    display: inline-block;
    text-decoration: none;
    width: 100px;
    height: 100px;
    line-height: 1.5;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.end-button:hover {
    background-color: #6674F4;
}

a {
    font-size: 20px;
    color: #4b2d2d;
}

a:hover {
    color: #ffffff;
}

a.no-underline {
    color: #000000;
    text-decoration: none;
}

a.no-underline:hover {
    color: #000000;
    text-decoration: none;
}

.hover-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tooltip {
    visibility: hidden;
    width: 200px;
    font-size: 10px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.hover-container:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

footer {
    text-align: center;
}

footer p {
    font-size: 10px; 
    color: #843b62;
}

.container {
    position: relative;
    display: inline-block;
}

.top-image2 {
    display: block;
    width: 100%;
    height: auto;
}



/* Notes */
/* March 10, 2025 - added fontface PixelifySans */