body {
    background-color: #F5F5F5;
    color: #222222;
    font-family: 'Courier New', 'Courier New', Courier, monospace;
    font-weight: 500;
    margin: 0;
    padding: 0;
}

h1 {
    font-weight: 700;
    font-size: 30px;
}

h2 {
    padding-top: 20px;
}

p {
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
    text-decoration: underline;
    text-underline-offset: 3px;
}

a:hover {
    color: rgb(249 80 104);
    font-weight: bold;
}

.ul-no-bullet {
    list-style: none;
    padding: 0;
}

.li-no-bullet {
    list-style: none;
    text-decoration: none;
}

hr {
    width: 33%;
    border: 0;
    height: 1px;
    background: #222222;
}

.poncle-green {
    color: #0eee81;
}

.logo {
    width: 300px;
}

.about {
    padding-top: 50px;
    padding-bottom: 30px;
}

.main-section {
    padding-top: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 66.67%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

footer {
    margin-top: 60px;
    width: 100%;
}

.under-construction-section {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: repeating-linear-gradient(45deg, #fbbd0a, #fbbd0a 20px, #161616 20px, #161616 40px);
}

.under-construction-text {
    color: #F5F5F5;
    font-weight: 800;
    font-size: 20px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.raindrop-wrapper {
    position: absolute;
    top: -20px;
    z-index: -9;
}

.raindrop {
    width: 30px;
}

.horizontal-list {
    list-style-type: none;
    padding:0;
}

.horizontal-list li + li::before {
    content: "|";
    margin: 0 0.5em;
}

.horizontal-list li {
    display: inline-block;
}

@keyframes falling {
    0% {
        opacity: 0.75;
    }
    100% {
        transform: translateY(20vh) scale(0);
        opacity: 0.65;
    }
}

.char {
    width: 30px;
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.latest-section {
    width: 100%;
}

.news-list {
    margin: 0;
    padding: 0;
}

li.news-item {
    padding: 28px 20px 16px;
    border-radius: 5px;
    position: relative;
}

ul.news-list li:not(:last-child) {
    margin-bottom: 24px;
}

.general-emphasis {
    color: rgb(4 21 15);
    font-weight: 700;
}

.news-item.general {
    color: black;
    background: rgb(194, 254, 63);
}

.news-item i {
    position: absolute;
    top: -9px;
    left: 10px;
    font-style: normal;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: #2d6a00;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
}

/* NEW badge on the one most recent item */
li.news-item:nth-child(-n+1)::after {
    content: "NEW";
    position: absolute;
    top: -9px;
    right: 10px;
    background: #ff3333;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    padding: 4px 10px;
    border-radius: 4px;
    transform: rotate(6deg);
}

.faq-section {
    text-align: left;
}

.warning {
    background-color: orangered;
    color: white;
    font-weight: 600;
    padding: 10px;
}

.warning-symbol {
    size: 100px;
}

code {
    background-color: #eaf4fc; /* Light blue background color */
    padding: 1px;
    border: 1px solid #3498db; /* Border color */
    border-radius: 5px;
}

.warning-banner {
  display: flex;
  background-color: #ffe1e1; /* Adjust the background color as needed */
  padding: 10px;
  border: 1px solid #ff7070; /* Adjust the border color as needed */
  border-radius: 5px; /* Adjust the border radius as needed */
}

.notify-banner {
    display: flex;
    background-color: hsl(46, 100%, 94%); /* Adjust the background color as needed */
    padding: 10px;
    border: 1px solid hsl(41, 100%, 72%); /* Adjust the border color as needed */
    border-radius: 5px; /* Adjust the border radius as needed */
}
  
.warning-symbol {
  font-size: 24px; /* Adjust the font size of the symbol */
  margin-right: 10px; /* Add some space between the symbol and text */
  align-self: center; /* Center the symbol vertically within its container */
}

.warning-text {
  flex-grow: 1; /* Allow the text to take up all available space */
  align-self: center; /* Center the text vertically within its container */
}