#contenedor {
            display: flex;
            justify-content: space-around;
            align-items: center;
        }

        #foto {
            width: 250px;
            height: 250px;
            border: 1px solid #ccc;
            position: relative;
            overflow: hidden;
        }

        #foto img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        #videoContainer {
            width: 250px;
            height: 250px;
            position: relative;
            overflow: hidden;
            border: 1px solid #ccc;
        }

        #videoContainer video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
        }
        