*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

header{
    background-color: #0085ff;
    height: 80px;
    margin-bottom: 20px;
    color: white;
    text-align: center;
    border-bottom: 4px solid #ff6b00;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.308);
    
    h1{
        font-family:"Special Gothic Expanded One", sans-serif;
        padding: 20px;
    }
}

main{
    text-align: center;

    img{
        width: 200px;
    }

    .conteudo{
        color: #2C2C2C;
        margin: auto;
        padding: 80px;
        max-width: 800px;
        background-color: #c2c2c215;
        box-shadow: 2px 2px 10px rgba(63, 63, 63, 0.171);

        p{
            line-height: 29px;
            text-align: justify;
            text-indent: 34px;
            margin-bottom: 10px;
            font-family:  "Karla", sans-serif;
            font-size: 15px;
        }
    }
    
}

footer{
    background-color: #0085ff;
    height: 90px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.247);
    text-align: center;
    a{
        padding: 10px;
        text-decoration: none;
        color: white;
        margin: 15px;
        border-radius: 15px;
    }
    img{
        width: 40px;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.247);
        transform: scale(1);
        transition: transform .5s;
        margin: 15px;
        border-radius: 50%;
    }

    img:hover{
        transform: scale(1.2);
        transition: transform .5s;
    }
    
}