/*Documento CSS style_excecoes.css*/
body{
     background-attachment: fixed;
     background-image:url(/static/img/textura-flickr.jpg);
     /*background-repeat: no-repeat;*/
} 

/*Pra dispositivos que tem uma largura mínima de 768 pixels. Tablets, por exemplo.*/
@media screen and (max-width: 720px) {
      #container, .span.destaque, .h1, .h2, .h3, .li, .p{
	  min-width: 240px;
	  width: 240px;
	 /*background-color: aqua;*/
  }
}	

#container{
	border: 1px dotted white;
         width: 54%;
	 background-color: #171717;
	 padding: 2em;
	 margin: 0 auto; 
	 color:#CCC77E;
	 box-shadow: 0.1em 0.2em 0.1em 0.3em #CC6A13;/*o primeiro número é da sombra direita, o 2º é da parte debaixo*/
	 }
	 

h1{
  color: #98B7BD;
  text-align: center;
  margin-top: -80px;/*aumentando o número o cabeçalho sobe*/
  }
  
h3{
  color: #98B7BD;
  text-align: center;
} 
  
h4{
  color: #8B4513;
  text-align: center;
} 

  
ol, p{
   text-align: center;
 }

 li{
   text-align: center;
   list-style:none; /*retira a marcação de lista. As bolinhas*/
} 
 
h4{
color: #CC6A13;
font-size:1.4em;
}
 
pre{
-moz-hyphens:auto;
-ms-hyphens:auto; 
-webkit-hyphens:auto;
hyphens:auto;
word-wrap:break-word;
}

#footer{  
	width: 55%;  
	height:	36px;
	margin-left: 20%;
	margin-bottom: 15px;
	padding-bottom: 26px; /*afasta o texto da parte de baixo do box*/  
 } 
	 
 
 
 
 
