

/* Column container */
.row {
    display: flex;
    flex-wrap: wrap;
}

/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.side {
    flex: 30%;
    background-color: #f1f1f1;
    padding: 20px;
}

/* Main column */
.main {
    flex: 70%;
    background-color: white;
    padding: 20px;
}
#foto_colores {
    width: 100%;
    height: 200px;
}
#foto_rotulo {
    width: 100%;
    height: 200px;
}

/* Fake image, just for this example */
.fakeimg {
    background-color: #aaa;
    width: 100%;
    padding: 20px;
}
#video {
    width:420px; 
    height:345px; 
}
#movimiento {
    width: 100px;
    height: 100px;
    background-color: red;
    font-weight: bold;
    position: relative;
    animation: mymove 5s infinite;
  }
  /* Todavía no se como funciona*/
  /* #div1 {animation-timing-function: linear;}
  #div2 {animation-timing-function: ease;}
  #div3 {animation-timing-function: ease-in;} */
  
  
  /* @keyframes mymove {
    from {left: 0px;}
    to {left: 300px;}
  } */

/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
    .row {
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
    }
}