#iframe h2 {
    font-size: 2em;
    margin-left: 0;
    font-weight: bold;
    color: var(--tertiary-color);
    margin: 20px 40px;
}

#iframe #iframe-container {
    width: auto;
    margin: 20px 0px;
    height: 500px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#iframe iframe {
    width: 80%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

@media (max-width: 768px) {
    #iframe iframe {
        width: 95%;
    }

    #iframe #iframe-container {
        height: 700px;
    }
}