body{
    background:  darkorange;
    font-family: 'montserrat'}
    
    /*Cabeçalho*/
    
    header{background:  linear-gradient(90deg, darkorange, red);
    display: flex;
    justify-content: space-between;
    height: 100px;
    
}
    
    h1{font-size: 60px;
    font-weight: bold;
    color: #eee;
    margin: auto 50px auto 0;
}
    
    #menu{width: 60px;
    margin: 0 0 0 25px;
    transition: 0.5s all;}
    
    #menu:hover {margin:0 0 0 30px ;
    transform: scale(1.05);}
    
    /*Lista*/
    
    nav ol{display: flex;
    color: white;
    background-color: darkslategrey;
    border-top:solid #eee 3px;
    border-bottom:solid white 3px;}
    
    nav ol li{margin: 0 auto;
    padding: 10px 0;
    font-size: 18px;
    transition: 0.5s all;
    font-weight: bold;}
    
    nav ol li:hover{cursor: pointer;
    text-decoration: underline;}
    
    nav ol li:first-child{color: darkorange;}
    
    a{text-decoration: none;
    color: white;}



/*Rodapé*/
        
footer p{text-align: center;
    font-size: 15px;
    background-color: #222;
    color: white;
    padding: 2em;}  
