/* Inicio */
body {
    margin: 0;
    overflow: hidden;
}

.inicio {
    display: flex;
    width: 100vw;
    height: 100vh;
}

.inicio h1{
    font-family: "Inconsolata", monospace;
    height: 100%;
    position: absolute;
    display: flex;
    align-items: center;
    font-size: calc(3vh + 2vw);
    margin: 0;
    z-index: 1;
    color: white;
    pointer-events: none;
    
}

#inicio_programacion, #inicio_fotografia {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    transition:filter 0.5s, width 0.5s ease;
}

.imagenDeInicio {
    width: 100%;
}

.imagenDeInicio img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.1);
    transition: filter 0.5s ease;
}

.imagenDeInicio img:hover {
    filter: brightness(1);
}

#inicio_programacion:hover, #inicio_fotografia:hover {
    width: 70%;
}