<!DOCTYPE HTML>
<html>
  		<head>
    			<title></title>
    			<style>
    			
    			       div 
    			       {
                              text-align: justify;
                         
                              background-color:#ff2800;
                               
                       }
    			
    			
    			</style>
  		</head>
  	@charset = "utf-8";
  	/*Corpo do documento */
  	body
  	{
  		background-color: white;
  		color: 0, 0, 0, 1;
  	}
  	/*Paragráfos */
  	p
  	{
  		text-align: justify;
  		text-indent: 50px;  	
  	}
  	
  	/*div*/
  	
  	div
  	{
  		background-color: #ff2800;
  		text-align: justify;
  	
  	}
  	/*Formatação da imagem com legenda */
  	figure.foto-legenda
  	{
  		border: 8px solid blue;
  	    /*Confuração das bordas das figuras: bordas 8 pixel, solida e de cor azul*/
  	
  	}
  	
    figure.foto-legenda img //Edita a imagem
  	{
  		width = 100%; // Largura
  		height: 100;  // Altura
  	}
  	figure.foto-legenda figcapiton // Edita a legenda
  	{
  		position: absolute;
  		top: 0 px; 
  		background-color: rgba (0, 0, 0, 0.4);
  	}