<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* CONTENTS
- RIVALDLE Logo
- Marvel Font Creation
- Video background (removed)
- Image fallback background
- Other sites styling
- Footer
- Mode Container (mode link)
*/

/* Loader styling */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

/* Default background for loader (fallback) */
#loader {
    background-color: rgb(0, 0, 0);
    display: block;
}


#content {
    transition: opacity 0.3s ease-in;
    opacity: 0;
}

html,
body {
    overflow-x: hidden;
    box-sizing: border-box;
    touch-action: manipulation;
}

/* Title logo styling */
/* Title logo container styling */
/* Title logo container */
#title_logo {
    display: flex;
    justify-content: center;
    /* Centers the logo horizontally */
    align-items: center;
    /* Centers the logo vertically */
    text-decoration: none;
    width: 100%;
    /* Ensures the container stretches the full width of its parent */
    max-width: 600px;
    /* Sets a maximum width for the container */
    margin: 0 auto;
    /* Centers the container in the parent element */
    height: auto;
    /* Adjust height as needed */
    margin-top: 3vh;
}

@media (max-width: 768px) {
    #title_logo {
        margin-top: 5vh;
        /* Adjust for mobile */
    }
}

/* Logo styling */
.logo {
    width: 90vw;
    /* Logo width will be 90% of the viewport width */
    max-width: 600px;
    /* Caps the logo width to 600px */
    height: auto;
    /* Keeps the logo proportional */

}

/* Hover effect for logo */
.logo:hover {
    transform: scale(1.02);
    /* Slightly scales the logo on hover */
    transition: transform 0.2s ease;
    /* Smooth transition */
}

/* Marvel font setup */
@font-face {
    font-family: 'MarvelFont';
    src: url('../../fonts/MarvelFont.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* Default body styles with the default background */
body {
    margin: 0;
    font-family: Arial, sans-serif;

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-image: url('../../_images/backgrounds/default.jpg');
}

.settings-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background-image: url('../../_images/global_images/background_logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1000;
    display: inline-block;
    text-indent: -9999px;
    /* Transition for transform and background-image */
}

/* Hover effect */
.settings-icon:hover {
    transform: scale(1.1);
    /* Slightly enlarge the icon */
    background-image: url('../../_images/global_images/hover_background_logo.png');
    /* Change background image on hover */
}

.dark-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Semi-transparent black */
    z-index: 998;
    /* Sits behind the popup but above the main content */
    display: none;
    /* Initially hidden */
    pointer-events: all;
    /* Blocks interaction with elements behind */
}

/* Background selection menu styling */
/* Popup container */
.menu-header {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    font-family: 'MarvelFont';
    color: white;
}

.background-menu {
    position: fixed;
    border: 2px solid #ddd;
    background-color: rgba(0, 0, 0, 0.751);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    /* Optional shadow for better design */
    left: 50%;
    top: calc(10vh + 20px);
    /* Add a base value + dynamic height offset */
    transform: translateX(-50%);
    /* Center horizontally */
    width: 80vw;
    max-width: 600px;
    max-height: calc(80vh - 20px);
    /* Account for padding/margins */
    padding: 15px;
    z-index: 999;
    display: none;
    /* Initially hidden */
    overflow-y: auto;
    /* Enable scrolling if content overflows */
}


/* Options container */
.background-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    /* Allow items to wrap to the next line */
    justify-content: center;
    /* Center the options */
}

/* Individual background option thumbnails */
.background-option {
    width: 100px;
    height: 100px;
    /* Ensure the height matches the width */
    object-fit: cover;
    cursor: pointer;
    border: 3px solid #ddd;
    flex: 0 1 calc(33.33% - 10px);
    /* Flexible width, 3 items per row with gap */
    box-sizing: border-box;
    /* Include padding and border in size calculations */
    aspect-ratio: 1 / 1;
    /* Explicitly set a 1:1 aspect ratio */
}

/* Highlight effect on hover */
.background-option:hover {
    border-color: #007bff;
}


/* Custom image overlay (optional, still kept) */
.custom-image-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../../_images/home_images/HomeBorder.png') no-repeat center center;
    background-size: 100% 100%;
    pointer-events: none;
    z-index: 1;
}

/* Media query to hide the custom image overlay on small screens */
@media (max-width: 768px) {
    .custom-image-overlay {
        display: none;
    }
}

/* Dark overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

/* "Other sites" box styling */
.other_sites_box {
    width: 80vw;
    max-width: 400px;
    height: 150px;
    background-color: rgba(0, 0, 0, 0.7);
    border: 3.5px solid #dce1f4e8;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.2em;
    font-family: MarvelFont, sans-serif;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9);
}

/* Footer text styling */
.footer_text {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1em;
    font-family: 'MarvelFont', 'Franklin Gothic Medium';
    color: #ffffff;
    margin-top: 30px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9);
    text-decoration: none;
}

/* Media query for smaller screens */


/* Mode link box styling */
.mode_link_box {
    display: flex;
    position: relative;
    height: 80px;
    width: 205px;
    background-color: rgba(0, 0, 0, 0.6);
    border: none;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
    font-family: MarvelFont, sans-serif;
    transition: transform 0.1s ease-in-out, background-color 0.1s ease-in-out;
    z-index: 1;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9);
}

.mode_link_box::before {
    content: '';
    position: absolute;
    top: -22px;
    left: -34px;
    width: 260px;
    height: 125px;
    background-image: url('../../_images/home_images/skinnyborder.png');
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
}

.mode_link_box:hover {
    transform: scale(1.02);
    background-color: rgba(0, 0, 0, 0.3);
}

.mode_link_box:hover::before {
    background-image: url('../../_images/home_images/border.png');
    transition: transform 0.3s ease-in-out;
}

/* Mode container for links */
.mode_container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: flex-start;
    align-items: center;
}

.mode_container a {
    text-decoration: none;
}

/* Social media container */
.social_media_links_container {
    position: relative;
    display: flex;
    height: 80px;
    width: 205px;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin-top: 15vh;
    row-gap: 15px;
}

/* Social media icons */
.media_logo {
    height: 50px;
    width: 50px;
    margin: 0 10px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.media_logo:hover {
    transform: scale(1.2);
    filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.3)) brightness(1.2);
    cursor: pointer;
}

#footer {
    text-decoration: underline;
    text-decoration-color: white;
}

/* Reset Button Styling */
#resetBackgroundBtn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #007bff;
    color: #fff;
    font-family: 'MarvelFont', sans-serif;
    font-size: 16px;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    z-index: 1000;
}

#resetBackgroundBtn:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

#resetBackgroundBtn:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.6);
}

#resetBackgroundBtn:disabled {
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
    transform: none;
}

.head_icon_container {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

/* Removes the underline */
#privacyPolicyLink {
    text-decoration: none;
}

/* Ensure the text is not underlined even on hover or active states */
#privacyPolicyLink:hover,
#privacyPolicyLink:active,
#privacyPolicyLink:visited {
    text-decoration: none;
}

/* Adds pointer cursor for a clickable effect */
#privacyPolicyLink .footer_text {
    cursor: pointer;
}

.subHeadContainer {
    display: flex;
    flex-direction: row;
    position: relative;
}

.quiz_garden_logo{
    background-color: hsl(152,43%,98%);
    border-radius: 9999px;
    border: 2px solid rgba(189, 189, 189, 0.102);
    height: 50%;
    width: 50%;
    padding: 5px;
}</pre></body></html>