:root {
    --text-color: #f5f5f5;
}

body {
    background-color: #555555;
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    margin-left: 40px;
    margin-right: 10px;
    margin: 0;
    padding: 0;
    height: 100%;
}

p {
    color:var(--text-color)
}

h1 {
    color:var(--text-color)
}

h3 {
    color:#d5d5d5
}

.containerBlock {
    display: block;
}

.blackbg-link {
    text-decoration: none; /* Remove underline */
    display: block; /* Ensures the link takes up the block space of the div */
}

.contentBlockSimple {
    background-color: #50a9bd;
    padding: 2px;
    border-radius: 0.9em;
    text-align: center;
    display: inline-block; /* Makes the width match the content */
    width: 100%; /* Ensures a consistent width */
    max-width: 500px; /* Optional: Limits the width */
    margin: 1em auto; /* Centers the box and adds spacing between */
}

.contentBlockLeft {
    background-color: #7ad3e7;
    border-radius: 0.9em;
    text-align: left;
    display: flex;
    width: 100%;
    max-width: 500px;
    margin: 1em auto;
    height: 200px;
    overflow: hidden;
    padding: 0;
    gap: 10px;
}

.contentBlockLeft img {
    flex: 0 0 50%; /* Makes the image take up half the container width */
    height: 100%; /* Ensures it fills the container's height */
    object-fit: cover; /* Crops the image to fit without distortion */
    display: block; /* Removes default inline spacing */
    width: 50%;
}

.contentBlockLeft div {
    flex: 1; /* Allows the text content to fill the remaining space */
    padding: 10px; /* Optional: Adds padding for the text content */
    overflow: auto; /* Enables scrolling if the text overflows */

}

.contentBlockLeft p {
    color: #000000;
}

.contentBlockHard a {
    text-decoration: none;
}



.contentBlockHard {
    background-color: #555;
    padding: 20px;
    display: inline-block; /* Makes the width match the content */
    height: 100%;
    margin-right: 5px;
    margin-left: 25px;
    min-height: 100vh;
}

@media (min-width: 768px) {
    .contentBlockHard {
        width: 500px;
        align-self: center; /* Set to your desired fixed size for desktop */
    }
}

/* Optional: For smaller screens (mobile), you can set a different width or leave as is */
@media (max-width: 767px) {
    .contentBlockHard {
        width: 90%; /* Set a max-width or fixed width for mobile (you can tweak this value) */
    }
}

#sidebar {
    width: 250px;
    background-color: #353535;
    padding: 1em;
    position: fixed;
    top: 0;
    left: -250px; /* Initially hidden */
    height: 100%;
    overflow-y: auto;
    transition: left 0.3s ease;
}

#sidebar.open {
    left: 0; /* Show the sidebar */
}

#sidebar ul {
    list-style: none;
    padding: 0;
}

#sidebar ul li {
    margin: 1em 0;
}

#sidebar ul li a {
    text-decoration: none;
    color: whitesmoke;
    font-weight: bold;
}

/* Button Styles */
#toggleSidebar {
    position: fixed;
    top: 20px;
    left: 20px;
    background-color: #333;
    color: white;
    padding: 10px;
    font-size: 20px;
    border: none;
    cursor: pointer;
    z-index: 100;
}

#toggleSidebar:hover {
    background-color: #555;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    display: none; /* Hidden initially */
}

#overlay.show {
    display: block; /* Show overlay */
}

.container {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    flex-direction: column; /* Stacks items vertically on small screens */
    align-items: center;
    text-align: center;
}

.circle-icon img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.text-content {
    margin-left: 20px;
    max-width: 600px;
}
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .text-content {
        margin-left: 0;
    }

    .additional-text {
        margin-left: 0;
        text-align: center;
        color: var(--text-color);
    }
}
/* Style the footer inside the sidebar */
.sidebar-footer {
    position: absolute;
    bottom: 0;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 12px;
    margin-bottom: 20px;
}

/* Container for the footer links (images) */
.footer-links {
    display: flex;
    justify-content: flex-start;  /* Left-align the items */
    align-items: center;
    padding: 10px 0;
    gap: 10px;  /* Adds space between icons */
    overflow-x: auto;  /* Allows horizontal scrolling if there are too many icons */
}

/* Style each image link */
.footer-icon {
    width: 40px;  /* Fixed width for square size */
    height: 40px;  /* Fixed height for square size */
    overflow: hidden;  /* Ensure images do not overflow the container */
    display: flex;
    justify-content: center; /* Center the image inside the container */
    align-items: center; /* Center the image inside the container */
    border-radius: 20%; /* rounds my icon corners*/
}

/* Style the images inside the links */
.footer-icon img {
    width: 100%;  /* Ensure the image fills the container's width */
    height: 100%;  /* Ensure the image fills the container's height */
    object-fit: cover;  /* Make the image cover the container without distortion */
    background-color: #ffffff;
}

/* Optional: Add hover effect */
.footer-icon:hover img {
    opacity: 0.8;
}
.circle-icon {
    width: 100px; /* Adjust size as needed */
    height: 100px; /* Same as width to keep it circular */
    border-radius: 50%; /* Makes it circular */
    overflow: hidden;
    margin-right: 15px; /* Space between image and text */
}

.circle-icon img {
    width: 100%;
    height: auto;
    display: block;
}
