<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:wght@500;800&amp;display=swap');

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Merriweather Sans', sans-serif;
    background-color: #0b2e45;
    color: #ffffff;
    padding-top: 220px; /* Leaves space for the pinned header */
    line-height: 1.6;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 350px;
    height: 226px;
    background: url('JensAwesomeRainbow.png') no-repeat center;
    background-size: cover;
    z-index: 10;
}

/* Background Scaling */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #0b2e45;
    z-index: -1;
    background-size: cover;
    background-attachment: fixed;
}

/* Facebook Button */
#facebook-btn {
    position: fixed;
    top: 15px;
    left: calc(50% + 135px); /* 162.5px right from the center */
    width: 25px;
    height: 25px;
    background: url('facebook-icon.png') no-repeat center;
    background-size: cover;
    cursor: pointer;
    z-index: 30; 
}
/* Styles specific to the vote-popup */
#vote-popup {
    background-color: #76cb00; /* Change background color to #fe9500 */
    color: #000000; /* Set text color to black */
}

/* Specific text styles inside vote-popup */
#vote-popup .vote-popup-text {
    font-size: 25pt; /* Set font size to 27pt */
    font-weight: 700 !important; /* Set font weight to 700 */
    color: #000000; /* Ensure text is black */
    line-height: 1.6; /* Line height for readability */
}

/* Ensure all links inside vote-popup are black */
#vote-popup .vote-popup-content a {
    color: #000000; /* Set link text color to black */
}

/* Specific styling for the vote-popup content */
#vote-popup .vote-popup-content {
       padding-top: 30px; /* This will override the top padding */
    padding-right: 15px; /* Keeps the original right padding */
    padding-bottom: 15px; /* Keeps the original bottom padding */
    padding-left: 15px; /* Keeps the original left padding */
    color: #000000; /* Ensure content text inside vote-popup is black */
}
#vote-popup .close {
    background-color: #0b2e45; /* Updated background color for vote-popup close button */
}
/* Popup Styles */
.popup {
    display: none; /* Hidden by default */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #3f8e2a; /* Background color for the popup */
    color: #ffffff; /* Set text color to white */
    padding: 5px;
    z-index: 30;
    width: 350px; /* Adjust width as needed */
    text-align: center; /* Left justify the text */
}
.popup .popup-text {
    font-size: 14pt;
    font-weight: 500 !important; /* Force Roboto Medium */
    color: #ffffff;
    line-height: 1.6;
    margin: 10px 0px 0px 0px;
    padding: 10px;
}

.popup-content {
    position: relative;
    color: #ffffff; /* Ensure all text inside popup is white */
    padding: 15px;
}

.popup-content a {
    color: #ffffff; /* Ensure links are also white */
    text-decoration: underline; /* Keep links underlined */
     margin-bottom: 0;
}

/* Popup Text Style */
.popup-text {
    font-size: 14pt;
    font-weight: 500 !important; /* Roboto Medium */
    color: #ffffff; /* Ensure the text color is white */
    line-height: 1.6; /* Line height for readability */
    margin: 10px 0px 0px 0px;
   padding: 10px;
}

.close {
    position: absolute;
    top: 3px; /* Adds 20px space from the top */
    right: 3px; /* Adds 20px space from the right */
    cursor: pointer;
    font-size: 8pt;
    font-weight: 500;
    border: 2px solid #ffffff; /* 1px white border to make it obvious as a button */
    padding: 2px 3px; /* Adds some padding to make it look like a button */
    color: #ffffff; /* Ensure text color is white */
    background-color: transparent; /* Ensure background is transparent */
    margin: 0; /* Remove margin to avoid unwanted spacing */
    box-sizing: border-box; /* Ensure padding and border are included in the button's size */
}
/* Post Content */
.container {
    max-width: 350px;
    margin: 0 auto;
    padding: 10px;
}

h1 {
    font-size: 20pt;
    font-weight: 800;
    padding-top: 10px;
}

h2 {
    font-size: 30pt;
    font-weight: 800;
    text-align: center;
    padding-top: 10px;
}

p, li, .date {
    font-size: 14pt;
    font-weight: 500;
}

/* Embedded YouTube Video */
.video-embed {
    margin: 20px 0;
}

a {
    text-decoration: underline;
    color: #ffffff;
}

/* Jump Links Styles */
.jump-links {
    margin-top: 10px;
    margin-bottom: 80px;
    text-align: center;
}

.jump-links a {
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 16pt;
    font-weight: 500;
    color: #ffffff;
    text-decoration: underline;
    margin: 0 10px;
    cursor: pointer;
    display: inline-block;
}

.jump-links a:hover {
    text-decoration: none; /* Optional: Removes underline on hover for better visibility */
}


/* Floating Donate Button */
#donate-container {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 375px;
    background-color: #0b2e45;
    color: #ffffff;
    text-align: center;
    padding: 5px 0;
    border: 1px solid #ffffff; /* White border on the floating banner */
    z-index: 20;
}

#donate-btn {
    background-color: #76cb00;
    color: #0b2e45;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    border: no border;
}

#donate-msg {
    margin-left: 10px;
}

/* Donate Banner */
#donate-banner {
    display: none;
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0b2e45;
    padding: 20px;
    color: #ffffff;
    border: 1px solid #ffffff;
    z-index: 20;
    text-align: center;
}

/* Responsive Background */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #0b2e45;
    z-index: -1;
    background-size: cover;
    background-attachment: fixed;
}
</pre></body></html>