* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.background-image {
    background: url('./assets/20231110_153115.jpg') no-repeat center center fixed; /* Ensure the background image is set */
    background-size: cover; /* Cover the entire background */
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: blur(3px);
}

.content-holder {
    background-color: rgba(255, 255, 255, 0.9); /* More opaque */
    margin: 1vh 0; /* Reduced margin */
    padding: 10px;
    width: 90%;
    max-width: 800px; /* Reduced maximum width */
    border-radius: 10px;
    display: flex; /* Enable flexbox */
    flex-direction: column; /* Stack elements vertically */
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Added shadow for depth */
}

.content-main {
    display: flex; /* Enable horizontal layout */
    align-items: center; /* Center items vertically */
    width: 100%; /* Full width */
}

.roundImage {
    border-radius: 30px;
    max-width: 200px; /* Set a specific max width */
    height: auto; 
    margin-right: 20px; /* Space between image and text */
}

.loadedText {
    border-radius: 10px;
    width: calc(100% - 220px); /* Take full width minus the image width */
    padding: 5px;
    line-height: 1.5;
    text-align: left; /* Align text to the left */
    max-width: 90%; /* Limit width for loaded text */
}

/* Media Query for screen sizes below 850px */
@media screen and (max-width: 650px) {
    .content-main {
        flex-direction: column; /* Stack elements vertically */
        align-items: center; /* Center items */
    }

    .roundImage {
        max-width: 80%; /* Increase image width on smaller screens */
        margin: 0 0 10px 0; /* Center image and add bottom margin */
    }

    .loadedText {
        width: 100%; /* Full width for text */
        max-width: 90%; /* Maintain some margin */
    }
}

@media screen and (max-width: 600px) {
    .content-holder {
        width: 95%; /* Slightly less than full width */
    }
    .roundImage {
        width: 100%; /* Ensure full-width on smaller screens */
    }
}

.downloads {
    display: flex; /* Enable flexbox */
    justify-content: center; /* Center content */
    align-items: center; /* Align items vertically */
    margin-top: 20px; /* Margin for spacing */
}

.downloads h1 {
    margin-right: 20px; /* Space between title and button */
}

.downloads a {
    text-decoration: none; /* Remove underline */
    background-color: #007bff; /* Button background color */
    color: white; /* Button text color */
    padding: 10px 20px; /* Padding for button */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s; /* Smooth hover effect */
}

.downloads a:hover {
    background-color: #0056b3; /* Darker shade on hover */
}

/* Media Query for smaller screens */
@media screen and (max-width: 850px) {
    .downloads {
        flex-direction: column; /* Stack elements vertically */
        align-items: center; /* Center items */
    }

    .downloads h1 {
        margin-bottom: 10px; /* Add bottom margin for spacing */
        margin-right: 0; /* Remove right margin */
    }
}
