@charset "UTF-8";

*{
    margin: 0;
    padding: 0;
    
}

body{
    border: 2px solid black;
    margin-top: 20px;
    width: 800px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

#cabecalho > h1{
    margin-top: 5px;
    margin-bottom: 30px;
    padding-top: 10px;
    margin-left: 20px;
}

.titulo{
    color: green;
}

.linha{
    background-color: black;
    color: white;
    

}
#corpo_pagina{
    margin-left: 20px;
}

input{
    height: 25px;
}

#btn_mais{
    background-color: green;
    border: 2px solid green;
    width: 25px;
    height: 25px;
    color: white;
    border-radius: 8px;
        
}
#btn_menos{
    background-color: red;
    border: 2px solid red;
    width: 25px;
    height: 25px;
    color: white;
    border-radius: 8px;
    float: right;    
}
#btn_valida{
    background-color: green;
    border: 2px solid green;
    width: 25px;
    height: 25px;
    color: white;
    border-radius: 8px;
}
p{
    color: orange;
    font-size: 20px;
   line-height: 1.5;
    text-indent: 15px;
    width: 750px;
}
/*
@media all and (min-width:800px){
    body{
        
    width:800px;
    margin: auto;    
}
    }
@media all and (max-width:480px){
    p{
        height: 100%;  
    }
    p span{
        display: block;
    }
}  
*/  