body {
	background-color: #330000;
}

div {border: solid 0px #black;
}
/*______________________________________*/
.color {
	box-shadow: 15px 15px 30px black;
    position: center;
    background-color: #1a0008;
    width: 95%;
    height: 75%;
    /* ( 100 - width ) / 2 */
    top: 10%;
    left: 10%;
    transform: rotate(60deg);
}
/*_____________________________________*/
.corner {
    box-shadow: 15px 15px 30px black;
    height: 250px;
  width: 250px;
  margin: 0 auto;
  background-color: #330000;
  animation-name: stretch;
  animation-duration: .5s; 
  animation-timing-function: ease-out; 
  animation-delay: 0;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  animation-fill-mode: none;
  animation-play-state: running;
}

@keyframes stretch {
  0% {
    transform: scale(.1);
    background-color: #330000;
    border-radius: 0%;
  }
  50% {
    background-color: #ffffff;
  }
  100% {
    transform: scale(1);
    background-color: #330000;
  }
}

body,
html {
  height: 100%;
}
/*________________________________________*/
.blank {
    background-color: #ff8080;
    box-shadow: 15px 15px 30px black;
}

.blank {
    background-color: #4d1919;
    transform: rotate(90deg);
    transition: transform 2s;
}

.blank:hover { 
    cursor: crosshair;
    background-color: #130606;
    transform: rotate(360deg);
}

.blank div { 
    box-shadow: 15px 15px 30px black;
    background-color: #732626;
    border-radius: 0%;
    width: 75%;
    height: 100%;
    transform: rotate(90deg);
    margin-top: 0%;
    background-repeat: no-repeat;
    background-position: center;    
}
