/* ********** Header ********** */

header{
    padding: 5px;
    background-color: black;
    width: 100%;
    height: 90px;
    /* box-shadow: 0px 0px 0px 1px rgb(70, 70, 32); */
    box-shadow: 0px 0px 0px 1px rgb(204, 102, 153);

    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header h1{
    margin: 0;
}
header div{
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
}
header a.logoAtletas{
    height: 100%;
}
header a.logoAtletas img{
    height: inherit;
    border-radius: 15px;
}
header a.iniciarSesion{
    width: auto;
    padding: 10px;
    text-decoration: none;
    color: white;
    border: 1px solid red;
    border-radius: 10px;
    cursor: not-allowed;
    visibility: hidden;
}
header div img{
    height: 100%;
}
#texto-atletasone{
    display: none;

}
/* ********** FIN Header ********** */


@media (max-width: 750px) {

    header{
        padding: 1px;
        height: 50px;
        justify-content: space-around;        
    }
    header a.iniciarSesion{
        visibility: hidden;
        padding: 0px;
        /* width: 10vw; */
        width: 55px;
    }
    header div img{
        height: 60%;
    }
    header a.logoAtletas img{
        height: 100%;
    }
}