body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #212121;
}




.header {
    position: relative; /* Initially positioned relative to the document flow */
    width: 100%;
    height: 99px;
    background-color: rgba(20, 50, 86, 0.2); /* 90% opacity white */
    text-align: center;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


.content {
    padding-top: 70px; /* Add padding to content to prevent it from being overlapped by the header */
}


.logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px; /* Adjust width as needed */
    height: auto; /* Maintain aspect ratio */
}

.text-container {
    max-width: 800px;
    margin: 120px auto 50px; /* Adjust top margin to make space for header */
    padding: 20px;
    background-color: #282828;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    text-align: justify;
    overflow-y: auto; /* Enable vertical scrollbar */
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: #888 #f4f4f4; /* Firefox */
}

.text-content {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ffffff;
}

        /* WebKit (Chrome, Safari, etc.) */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0); /* 90% opacity white */
        }

        ::-webkit-scrollbar-thumb {
            background: #69a8f0;
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #69a8f0;
        }

        /* Divider style */
        .divider {
            border: none;
            height: 2px;
            background: linear-gradient(to right, #5E9ED4, #012248);
            margin: 20px 0;
        }


        
/* Media query for mobile devices */
@media (max-width: 768px) {
    .text-container {
        margin: 20px auto;
        padding: 10px;
    }

    .text-content {
        font-size: 1rem;
    }
}
