body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #000000;
}

.svg-container {
    width: 90vw; /* Set a relative width to the viewport width */
    max-width: 800px; /* Maximum width to ensure visibility */
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px; /* Provides spacing around the SVG */
    overflow: hidden; /* Prevents SVG from overflowing */
}

svg {
    width: 100%; /* SVG will fill the container width */
    max-height: 80vh; /* Sets a maximum height relative to the viewport */
    height: auto; /* Keeps the aspect ratio intact */
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #000000;
    color: #ffffff;
    font-size: 0.75rem;
    font-family: Arial, Helvetica, sans-serif;
    width: 100%;
    margin-top: auto; /* Ensures the footer is at the bottom */
}
