*{
    margin: 0;
    padding: 0;
}
.noticia{
    display: flex;
    flex-direction: column;
    gap: 50px;
    top: 0;
    left: 0;
    height: auto;
    max-width: 100%;
    background-color: white;
}
.navNoticia{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: sticky;
    background-image: linear-gradient(
        120deg,
        transparent 0%,
        #1B3039
    );
    backdrop-filter: blur(5px);
    width: 100%;
    height: 47px;
    z-index: 6;
}
.contenidoNoticias{
    padding: 0 50px 0 50px;
}
.logoutNoticia{
    height: 100%;
    width: auto;
    cursor: pointer;
}
.logoutNoticia{
    height: 100%;
    width: auto;
    color: rgba(255, 255, 255, 0.463);
}
.logoutNoticia:hover{
    color: #05ADEA;
}
.tituloNoticia{
    font-size: xx-large;
    text-align: center;
    margin: 0 0 50px 0;
}
.imgNoticia{
    margin: 0 0 50px 0;
    width: 100%;
    height: auto;
    min-height: 400px;
}
.contentNoticia{
    font-size: x-large;
}
.userNoticia{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin: 50px 0 50px 0;
    gap: 50px;
    width: 100%;
    height: 200px;
    border-radius: 30px;
    box-sizing: border-box;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: 
    box-shadow .2s linear 0s,
    filter .5s linear 0s;
    cursor: pointer;
    padding: 50px 0 50px 50px;
}
.userNoticia:hover{
    filter: contrast(150%);
    box-shadow: 4px 8px 10px rgba(0, 0, 0, 0.5);
}
.perfilNoticia{
    width: 150px;
    height: 150px;
    border-radius: 100%;
}
.nameNoticia{
    padding-left: 50px;
    font-size: xx-large;
    text-align: center;
}