* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --colorg: rgba(208, 19, 19, 0.977);
}

#header {
    width: 100%;
    height: 10vh;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
}

.header-info {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

#header-titulo {
    text-decoration: none;
    color: #ffff;
}

#info-user {
    text-decoration: none;
    color: #fff;
    letter-spacing: 1px;
    background: none;
}

#info-cerrar-sesion {
    color: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 180px;
    height: 35px;
    border-radius: 5px;
    padding: 10px;
    border: 2px solid transparent;
    transition: all 0.5s ease-in;
}

#info-cerrar-sesion:hover {
    transition: all 0.5s ease-in;
    border: 2px solid #fff;
    background: #fff;
    color: rgba(0, 0, 0, 0.7);
}

.nav-register {
    color: #fff;
    text-decoration: none;
}

/*Logo Factoria*/
#logo {
    width: 120px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#logo img {
    width: 100%;
    object-fit: contain;
}
