/* styles.css */

.video-container {
    width: 100%;

    margin: 0 auto; /* Centra el video horizontalmente */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

video {
    width: 100%;
    height: auto;
    display: block;
}

.mute-toggle-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0);
	font-family: Montserrat;
	font-size: 12px;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mute-toggle-button span {
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}