*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    display: flex;
    flex-direction: row;
    background: #4481eb;
}
.correr{
    width: 63px;
    background-color: transparent;
    transition: 0.5s;
}
.sidebar{
    display: flex;
    width: 60px;
    height: 100%;
    background: #fff;
    overflow: hidden;
    position: fixed;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 15px;
    transition: 0.5s;
}
.correr:hover{
    width: 295px;
}
.sidebar:hover{
    width: 240px;
}
.sidebar ul{
    position: relative;
    height: 100%;
}
.sidebar ul li {
    list-style: none;
    width: 110%;
}
.sidebar ul li.media{
    position: absolute;
    bottom: 0;
}
.sidebar ul li:hover{
    background-color: #4481eb3b;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}
.sidebar ul .media:hover{
    background-color: #e3f11c3b;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}
.sidebar ul li a{
    position: relative;
    display: flex;
    white-space: nowrap;
    text-decoration: none;
}
.sidebar ul li a .icon{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 60px;
    height: 60px;
    font-size: 1.5em;
    color: #333;
}
.sidebar ul li a .text{
    position: relative;
    height: 60px;
    display: flex;
    align-items: center;
    font-size: 1em;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.sidebar ul li.logo{
    margin-bottom: 50px;
}
.sidebar ul li.logo:hover{
    background: #fff;
}
.sidebar ul li.logo .icon{
    font-size: 2em;
}
.sidebar ul li.logo .text{
    font-size: 1.2em;
    font-weight: 500;

}
.cuerpo{
    background-color: transparent;
    width: 100%;
}
.cuerpo .titulo{
    background-color: white;
    padding: 30px;
    margin: 30px;
    color: #000;
    text-align: center;
    font-size: 2.3em;
    border-radius: 20px;
    text-transform: uppercase;
}
.cuerpo .tema{
    display: flex;
    flex-direction: column;
    background-color: transparent;
    margin: 45px;
    padding: 20px;
    border-radius: 15px;
    background-color: #fff;
}

@media screen and (max-width: 9999px) {

        .sidebar:hover{
            max-width: 280px;
        }
    }
@media screen and (max-width: 700px) {
    
    .cuerpo .titulo{
        margin: 20px;
        padding: 20px;
        font-size: 1.9em;
        }
        .sidebar ul li.logo .text{
            font-size: 0.9em;
            font-weight: 500;
        }
        .sidebar ul li a .text{
            font-size: 0.6em;
        }
        .sidebar:hover{
            min-width: 180px;
        }
    }
    @media screen and (max-width: 530px) {
        
        .cuerpo .titulo{
            margin: 15px;
            padding: 15px;
            font-size: 1.4em;
        }
        .sidebar ul li.logo .text{
            font-size: 0.8em;
            font-weight: 500;
        }
        .sidebar ul li a .text{
            font-size: 0.5em;
        }
        .sidebar:hover{
            min-width: 140px;
        }
    }
    p {
        font-size: 1.5em;
    }
    .listaCentral {
        display: flex;
        flex-direction: column;
        padding: 20px;
        font-size: 1.3em;
    }
    .listaCentral ul{
        padding: 10px;
    }
    .imagen1 {
        background-color: white;
        width: 350px;
        border: 1px solid transparent;
        border-radius: 20px;
        box-shadow: 2px 2px 6px 0px #333;
    }
    .imagen2 {
        width: 320px;
        border: 1px solid white;
        border-radius: 20px;
        box-shadow: 2px 2px 6px 0px #333;
    }
    .video {
        background-color: white;
        width: 240px;
        border: 1px solid transparent;
        border-radius: 20px;
        box-shadow: 2px 2px 6px 0px #333;
    }
    .red{
        color: red;
    }