body{
  background-color:#e3e3e3;
  font-family: sans-serif;
  color:#6D6B6B;
  line-height: normal;
  text-align: justify;
  
 font-smoothing: antialiased;/*suavizar fontes*/
    
}
#content h1{
  position: absolute;
  left: 37%;
  bottom: 74%;
  cursor: default;
  color:#6D6B6B;
  animation: girar 2s ease-in-out;
}
ul{
  list-style-type:none
}
#content {
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  width: 300px;
  margin: auto;
  border-radius:10px;
  background: #FFF;
  display: inline;
  overflow: hidden;
  
  box-shadow: 0 1px #DDD,
              0 2px #EEE,
              0 3px #DDD,
              0 4px #EEE,
              0 5px #DDD,
              0 6px #EEE,
              0 10px 10px -3px #AAA;
  animation: girar 2s ease-in-out;
}
#content div {
  cursor: default;
  position: relative;
  height: 50px;
  background: #6D6B6B;
  display: block;
  margin-top: -1px;
  animation: girar 2s ease-in-out;
  
  
  
  }
#content ul li {
  cursor: default;
  position: relative;
  padding: 10px 10px 10px 10px;
  background: transparent;
  box-shadow: 0 -2px #EEE;
  display:block;
  animation: girar 2s ease-in-out;
}
.textSpan:after {
 content: '\2807';
 font-size: 3em;
 color: #6D6B6B
}
#content ul li: {
 
  position: absolute;
  top: 0;
  left: -16px;
  bottom: 0;
  width: 5px;
  height: 5px;
  margin: auto;
  border-radius: 100%;
  background: #6D6B6B;
  display: inline;
  animation: girar 2s ease-in-out;
   
}

nav a { /*transição*/

 transition-property: all;
 transition-duration: 50ms;
 transition-timing-function: ease-in-out;
 text-decoration: none;
 display:block;
 color: #6D6B6B;
 animation: girar 2s ease-in-out;
  
}
nav a:hover {
  color:#fff;
  padding: 9px 10px;
  background-color:#6D6B6B;
  margin-top: -10px;
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: -8px;
  
  
}
nav a:active {
    background: #6D6B6B;
  
}

#content div:hover{
     color: white;
   padding: px 300px;
   background-color: #6D6B6B;
  
 
}
#content div:active {
  background: #6D6B6B;
}

@keyframes girar {
  from {
      transform: rotateX(90deg);    
     
  }
}