#leer-mas{
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 9999;
    background: rgba(100, 100, 100, 0.5);
    overflow: hidden;
    display: none;
}

#leer-mas-alert{
    width: 75vw;
    height: calc(100vh - 256px);
    background: #FFFFFF;
    margin: 128px auto;
    border-radius: 32px;
    box-shadow: 0 16px 32px rgba(100, 100, 100, 0.75);
    overflow: hidden;
}

#leer-mas-alert .header{
    background: rgb(150, 20, 44);
    position: relative;
    height: 35%;
    box-shadow: 0 8px 16px #888888;
}

#leer-mas-alert .header h3{
    color: #FFFFFF;
    font-weight: 600;
    font-size: 48px;
    position: absolute;
    left: 50%;
    top: 32px;
    transform: translate(-50%);
    background: rgba(0, 0, 0, 0);
}

#leer-mas-alert .header h5{
    color: #CCCCCC;
    font-size: 32px;
    position: absolute;
    left: 50%;
    top: 92px;
    transform: translate(-50%);
    background: rgba(0, 0, 0, 0);
}

#leer-mas-alert .header a{
    color: #FFFFFF;
    font-size: 32px;
    position: absolute;
    right: 32px;
    top: 16px;
    font-weight: 600;
    transition: color 0.25s;
}

#leer-mas-alert .header a:hover{
    text-decoration: none;
    color: #CCCCCC;
}

#leer-mas-alert .body{
    padding: 32px;
    overflow-y: auto;
    overflow-x: hidden;
    height: 65%;
}