.header-contenedor{
    width: 100%;
    height: 120px;
    /* background-color: #13171C; */
    align-items: center;
    align-content: center;
    display: flex;
    justify-content: space-between;
    
    
}

.img{
    width: 100px;
    height: 100px;
    transition: all 0.5s ease;
    
}
.img:hover{
    width: 120px;
    height: 120px;
}
.abre_ventana{
    background-color: #13171C;
    border: none;
    cursor: pointer;
    margin-right: 20px;
}
.contenedor-options{
    display: none;
}

@media (min-width: 600px){
    .abre_ventana{
        display: none;
    }
    .contenedor-options{
        display: inherit;
        color: white;
        padding: 100px;
        gap: 40px;
    }
    .parrafo-header{
        font-family: "Poppins";
        font-size: 20px;

    }
    .img{
        margin: 40px;
    }
    header {
        gap: 20px;
        position: sticky;
        top: 0;
        z-index: 100;
        /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
         backdrop-filter: blur(10px); 
        -webkit-backdrop-filter: blur(10px);
        padding: 1rem 0;
        transition: background-color 0.3s ease, box-shadow 0.3s ease;
    }
    
    header.scrolled {
        background-color: rgba(255, 255, 255, 0);
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    }
    
}
.option_header{
    text-decoration: none;
    color: white;
    padding: 30px;
    transition: all 0.2s;
    border-radius: 20px; 
}

.option_header:hover{
    background-color: #2d4158;
    color: cadetblue; 
    box-shadow: 10px 20px 10px #f0f0f053;
    transition: 0.5s all ease-out;
    transform: translateY(10px);
}
.parrafo-header:hover{
    color: cadetblue;
    
    
}


.ventana{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #13171C;
    display: none;
    transition: opacity 0.3s ease, visibility 0.5s ease;
    visibility: hidden;
    
}
.ventana_contenedor_button{
    display: flex;
    justify-content: end;
    margin: 20px;
    
}
.ventana__cerrar_ventana_button{
    background-color: #13171C;
    border: none;
    display: flex;
    cursor: pointer;
}
.options{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 60px 50px;
}
.link{
    text-decoration: none;
    color: white;
}
.texto_contenido:hover{
    background-color: rgb(39, 26, 84);
    
}
.texto_contenido{
    font-family: "Jersey 15";
    font-size: 42px;
    font-weight: 100;
    border: solid 1px white;
    border-radius: 20px;
    padding: 20px;
    background-color: #2d4157;
}
.i{
 margin: 10px;   
}