body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: white; /* Set the background to black */
    font-family: Helvetica, Arial, sans-serif; /* Use Helvetica font */
    color: white; /* Set body text color to white */
}

#header {
    position: relative;
    height: 400px; /* Set the height for the floating header */
    width: 100%;
    background-color: black; /* Ensure background is black */
	
    margin: 0; /* Remove any margin around the header */
    padding: 0; /* Remove any padding around the header */
}

.version {
    position: absolute;
    top: 10px;  /* Adjust as needed */
    right: 10px;  /* Adjust as needed */
    font-size: 12px;  /* Smaller text */
    color: #fff;  /* Change color as needed */
    opacity: 0.7;  /* Optional: slightly transparent */
}

.parent-container {
    padding: 20px;
}

#text-container {
    position: absolute;
    top: 50%; /* Center vertically in the header */
    left: 50px; /* 50px from the left edge */
    right: 50px; /* 50px from the right edge */
    transform: translateY(-50%); /* Adjust vertical centering */
    display: flex;
    justify-content: space-between; /* Distribute space between left and right sections */
    align-items: center; /* Center items vertically within the container */
    z-index: 10; /* Ensure it is on top of the canvas */
}

.left-links {
    display: flex; /* Use flexbox for left links */
}

.left-links a {
    margin-right: 50px; /* Add margin to create space between left links */
}

.left-links a:last-child {
    margin-right: 0; /* Remove margin from the last left link */
}

.right-links {
    /* No additional styles needed unless you want specific positioning */
}

.word {
    opacity: 0; /* Start hidden */
    transition: opacity 2s ease-in-out, color 0.3s ease;
    font-size: clamp(1.2rem, 1.5vw + 0.8rem, 2.5rem); /* Responsive font size using clamp */
    color: white; /* Set the text color to white */
    text-decoration: none; /* Remove underline from links */
    pointer-events: none; /* Prevent interaction until visible */
}

.word.show {
    opacity: 1; /* Fade in */
    pointer-events: auto; /* Enable interaction */
}

.word:hover {
    color: #f39c12; /* Example hover effect: change color */
    cursor: pointer;
}

#content {
    padding: 20px;
    background-color: black; /* Set background color for content area */
    color: white; /* Text color for content area */
    font-family: Helvetica, Arial, sans-serif; /* Consistent font */
    margin: 0; /* Remove any margin around the content */
}

.content-blocks {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping to new rows if needed */
}

.content-block {
    background-color: black; /* Set background color for blocks */
    color: white; /* Text color for blocks */
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Add shadow for depth */
    flex: 1 1 calc(33.333% - 20px); /* Responsive width of blocks */
    box-sizing: border-box; /* Include padding and border in the element’s total width and height */
}

.download-wrapper {
    display: flex; /* Enables flexbox layout */
    justify-content: center; /* Centers content horizontally */
    margin: 30px 0; /* Optional: Adds vertical spacing above and below */
    width: 100%; /* Make the wrapper full width */
}

.download-section {
    margin-top: 30px auto; /* Adds spacing above the section */
    text-align: center; /* Centers the download link */
    padding: 20px; /* Adds padding for spacing inside the section */
    background-color: black; 
    border-radius: 8px; /* Softens the corners */
    width: fit-content; /* Ensures the section's width is just enough to fit the content */
}

.download-link {
    text-decoration: none; /* Removes the underline */
    color: #ffffff; /* Sets the text color to white */
    background-color: #007BFF; /* Sets the background color of the button */
    padding: 15px 25px; /* Adds padding inside the button */
    border-radius: 5px; /* Softens the button's corners */
    font-size: 1.1em; /* Makes the text a bit larger */
    font-weight: bold; /* Makes the text bold */
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

.download-link:hover {
    background-color: #0056b3; /* Darkens the button on hover */
    cursor: pointer; /* Changes the cursor to a pointer on hover */
}

.content-blocks.show {
    opacity: 1; /* Fade in */
}

.content-block h2 {
    margin-bottom: 10px; /* Space below the title */
}

/* Responsive adjustments */
@media (max-width: 768px) { /* For tablets and small screens */
    #content {
        width: 100%; /* Make the content full-width */
        padding: 10px; /* Adjust padding */
    }
    .content-blocks {
        gap: 10px; /* Reduce gap on smaller screens */
    }
    .content-block {
        flex: 1 1 calc(50% - 10px); /* Adjust width for tablets */
    }
    #text-container {
        top: 25%; /* Adjust vertical position as needed */
        transform: translateY(-25%); /* Center it vertically */
    }
}

@media (max-width: 480px) { /* For mobile phones */
    .content-block {
        flex: 1 1 100%; /* Full width for mobile screens */
    }
}

/* Contacts Blocks */
#contacts-blocks {
    display: none; /* Hidden by default */
}

#contacts-blocks.show {
    display: flex; /* Display as flex when visible */
}
