body{
    background-color: rgb(231, 255, 231);
}


.hola{
    display: flex;
}

@media (max-width: 768px) {
    .hola {
      bottom: 15px;
      max-width: 100px;
      max-height: 100px;
    }
  }

.img img{
    border: 2px solid black;
    box-sizing: border-box; 
    border-radius:7%;
    height: 1000px;
    flex:2
    
}

@media (max-width: 768px) {
    .img img {
      bottom: 15px;
      max-width: 100px;
      max-height: 100px;
    }
  }

.list-type5{
    width:410px;
    margin:0 auto;
    flex: 1;
    }

    /* @media (max-width: 768px) {
        .list-type5 {
          bottom: 15px;
          max-width: 50px;
          max-height: 50px;
        }
      } */


.list-type5 ol {
    list-style-type: none;
    list-style-type: decimal;           /*IE 7- hack*/
    margin: 0;
    margin-left: 1em;
    padding: 0;
    counter-reset: li-counter;
    }

.list-type5 ol li{
    position: relative;
    margin-bottom: 1.5em;
    padding: 0.5em;
    background-color: #F0D756;
    padding-left: 58px; 
    }
    
.list-type5 a{
    text-decoration:none;
    color:black;
    font-size:25px;
    font-family: 'Raleway', sans-serif;
    }

    @media (max-width: 768px) {
        .list-type5 a {
          bottom: 15px;
          font-size: 15px;
          max-width: 100px;
          max-height: 100px;
        }
      }
    
.list-type5 li:hover{
    box-shadow:inset -5em 0 #6CD6CC;
    box-shadow:  0.5s;                  /* For Safari 3.1 to 6.0 */
    transition:  0.5s;
    }
    
.list-type5 ol li:before {
    position: absolute;
    top: -0.1em;
    left: -0.6em;
    width: 1.8em;
    /* right: 1.2em; */
    height: 1.2em;
    font-size: 2.3em;
    line-height: 1.2;
    font-weight: bold;
    text-align: center;
    color: white;
    background-color: #6CD6CC;
    transform: rotate(-20deg);
    -ms-transform: rotate(-20deg);
    -webkit-transform: rotate(-20deg);
    z-index: 99;
    overflow: hidden;
    content: counter(li-counter);
    counter-increment: li-counter;
    }