*aside, article, section{
  display: block;
  margin:0;
  padding: 0;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

h1{
  margin:0;
  padding: 0;
}

html, body{
   margin:0;
  padding: 0;
}
html{
  background: #95c2d8;
}
body{
  background: violet;
  margin: 0 auto;
  width: 1200px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
article{
  height: 800px;
  background: bisque;
  width: 500px;
  float: left;
}
aside{
  height: 900px;
  background: bisque;
  width: 695px;
  float: right;
}
.parent {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: 1fr;
grid-column-gap: 2px;
grid-row-gap: 0px;
}
h1{
  color: blueviolet;
  font-size: 1.5em;
  text-align: center;
  position: absolute;
  margin-left: 20px;
  margin-top: 60px;
}
h2{
  color: blueviolet;
  font-size: 2.0em;
  text-align: center;
}
img{
  margin:0 ;
  width: 500px;
  height: 900px;
}

.content-all {
    width: 100px;
    margin: auto;
    perspective: 800px;
    position: relative;
    margin-top: 100px;
}
.container-fotos{
  width: 100%;
  position: absolute;
  animation: rotar 20s infinite linear;
  transform-style: preserve-3d;
}
.container-fotos:hover{
  animation-play-state: paused;
  cursor: pointer;
}
.container-fotos figure{
  width: 100%;
  height: 130px;
  overflow: hidden;
  position: absolute;
  box-shadow: 0px 0px 20px 0px black;
  transition: all 100ms;
}
.container-fotos figure:nth-child(1){transform: rotate(0deg) translateZ(300px);}
.container-fotos figure:nth-child(2){transform: rotate(40deg) translateZ(300px);}
.container-fotos figure:nth-child(3){transform: rotate(80deg) translateZ(300px);}
.container-fotos figure:nth-child(4){transform: rotate(120deg) translateZ(300px);}
.container-fotos figure:nth-child(5){transform: rotate(160deg) translateZ(300px);}
.container-fotos figure:nth-child(6){transform: rotate(200deg) translateZ(300px);}

.container-fotos img{
  width: 100%;
  height: 150px;
  overflow: hidden;
  transition: all 300ms;
  border-radius: 10px;

}
.container-fotos img:hover{
  transform: scale(1.2);
  transition: all 300ms;
}
@keyframes rotar{
    from{
        transform: rotateY(0deg);
    }to{
        transform: rotateY(360deg);
    }
}
table {
 color: rgb(71, 4, 71);
 font-size: 14px;
 table-layout: fixed;
 border-collapse: collapse;
}
th{
  padding: 10px 40px;
  font-weight: 800;
  text-transform: uppercase;
}
td{
  padding: 10px;
  border-bottom: solid 1px white;
  text-align: center; 
  
}
tbody tr{
  cursor: pointer;
  
}
tbody tr :hover{
  background: #95c2d8;
}


  

 