#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: rgba(85, 85, 85, 0.45);
    color: white;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
}

#myBtn:hover {
    background-color: rgba(255, 255, 255, 0.30);
    color: #555;
}

@media screen and (max-width: 1150px) {
    #myBtn:hover {
        background-color: rgba(85, 85, 85, 0.45) !important;
        color: white !important;
    }
}

.warning-box {
    border-left: 4px solid #ff4400; /* Yellow color for warning */
    background-color: #fff3cd; /* Light yellow background */
    padding: 10px 20px; /* Padding for text inside the box */
    margin: 10px 0; /* Margin for spacing around the box */
    color: #856404; /* Text color for the warning */
    font-family: Arial, sans-serif; /* Font style */
}

/* Optional: If you want to add a warning icon using a pseudo-element */
.warning-box:before {
    content: '\26A0'; /* Unicode for the warning sign */
    color: #ffcc00; /* Color of the warning icon */
    font-size: 20px; /* Size of the icon */
    vertical-align: middle; /* Align icon with text */
    padding-right: 10px; /* Space between icon and text */
}

.fun-warning-box {
    border-left: 4px solid #4CAF50; /* Green color for a light-hearted warning */
    background-color: #d4edda; /* Light green background */
    padding: 10px 20px; /* Padding for text inside the box */
    margin: 10px 0; /* Margin for spacing around the box */
    color: #155724; /* Text color for the fun warning */
    font-family: Arial, sans-serif; /* Font style */
}

.fun-warning-box a {
    color: #0056b3; /* Color for the link */
    text-decoration: underline; /* Underline for the link */
}

.fun-warning-box a:hover {
    color: #004494; /* Darker color when hovering over the link */
    text-decoration: none; /* Removing underline on hover */
}

/* Optional: If you want to add a humorous emoji or icon using a pseudo-element */
.fun-warning-box:before {
    content: '\1F609'; /* Unicode for the wink emoji */
    font-size: 20px; /* Size of the emoji */
    vertical-align: middle; /* Align emoji with text */
    padding-right: 10px; /* Space between emoji and text */
}

h3 {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 30px;
    margin-bottom: 0.5rem;
}