html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

body {
    font-family: Arial, sans-serif;
}

.central-element {
    flex: 1; /* Allow the central element to grow */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-sizing: border-box; /* Include padding/borders in height calculation */
    min-height: 0; /* Prevent it from pushing the footer out of view */
}

svg {
    max-width: 100%; /* Ensure SVG scales with the container */
    max-height: 100%; /* Prevent SVG from overflowing vertically */
}

footer {
    background-color: #f1f1f1;
    text-align: center;
    padding: 10px 0;
    flex-shrink: 0; /* Prevent footer from shrinking */
    width: 100%; /* Ensure footer spans the full width */
}


.contact-info {
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #333;
}
.contact-info a {
    text-decoration: none;
    color: #007bff;
    margin-left: 5px;
}
.contact-info a:hover {
    text-decoration: underline;
}
.icon {
    margin-right: 5px;
}
