main {
    font-family: Arial, Helvetica, sans-serif;
    max-width: 650px;
    display: flex;
    height: 100%;
    justify-content: center;
    align-content: center;
    margin: 0 auto;
}

iframe {
    padding: 20px;
    flex-direction: column;
    width: 100%;
}

@media (max-width: 820px) {

    .main {
        max-width: 100%;
    }
    iframe {
        max-width: 90%;
    }
}

/* Footer styling */
footer {
    background: black;
    color: darkgrey;
    padding: 10px 0;
    text-align: left;
    font-size: 11px;
    position: static;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
}

.footer-menu {
    display: flex;
    align-items: center;
}

.logo h11 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: lighter;
    font-size: 10px;
    color: white;
    margin: 0;
}
.logo h12 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold; 
    font-size: 5px;
}

.footer-menu .social-icons {
    display: inline-block;
    margin-left: 15px;
}

.footer-menu .social-icons a {
    color: #ffffff;
    font-size: 12px;
    margin-left: 15px;
}

.social-icons a {
    list-style-type: none;
    display: inline-block;
    color: #ffffff;
    font-size: 12px;
    margin-left: 15px;
}

.footer-copyright {
    color: #ffffff;
    font-size: 8px;
    margin-left: auto; /* Ensure it is pushed to the right */
}

