html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

#youtube-player {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Places the video behind other content */
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    font-family: Arial, sans-serif;
    z-index: 1; /* Ensures the text is above the video */
}

.overlay-text h1 {
    font-size: 3rem;
    margin: 0;
}

.overlay-text p {
    font-size: 1.5rem;
    margin: 10px 0 0;
}
/* Mobile Message */
.mobile-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 24px;
    z-index: 1000; /* Ensure it's above everything */
}
/* Blog container styles */
#blog-container {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

#blog-container h3 {
    color: red;
    margin-top: 0;
    border-bottom: 1px solid red;
    padding-bottom: 5px;
}

#blog-container p {
    margin-bottom: 15px;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 0, 0, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 0, 0, 0.7);
}