@media (min-width: 600px) and (max-width: 2560px) {
    */ .container {
        position: absolute;
        width: 100%;
        top: 0%;
        bottom: 0%;
        height: 70%;
        padding-top: 100%;
        /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
    }

    .download-link-container {
        display: none;
    }

    /* Then style the iframe to fit in the container div with full height and width */
    .responsive-iframe {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        border: 0px solid white;
        right: 0;
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 600px) {
    .container {
        position: absolute;
        width: 100%;
        top: 0%;
        bottom: 0%;
        /* height: 70%; */
        padding-top: 0.5625;
        /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
    }

    /* Then style the iframe to fit in the container div with full height and width */
    .responsive-iframe {
        position: absolute;
        bottom: 0;
        border: none;
        right: 0;
        width: 100%;
        height: 100%;
        padding: 0;
        overflow: hidden;
    }


}

.download-link-container {
    position: relative;
    margin-top: 0px;
    left: 25%;
    /* Ajusta el margen superior según sea necesario */
    text-align: center;
}

.download-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}