*{
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
/* Menu do sit */
header ul {
    list-style: none;
    padding: 0;
    overflow: hidden;
    transition: all .5s;
}

header nav {
    background-color: #575757;
    padding: 0 20px;
    justify-content: space-between;
    align-items: center;
}

header h1{
    color: #FFF;
}

header p {
    font-family: arial;
    color: #FFF;
    margin: 22px 0 22px 0;
}
header nav{
    display: flex;
    flex-direction: row;
    margin-bottom: 0;
}
header ul{
    text-decoration: none;
    display: flex;
    flex-direction: row;
    margin-bottom: 0;
}

header li {
    padding: 0 30px;
}

header h1 {
    margin: 0;
    padding: 10px;
}

header button {
    background-color: transparent;
    border: none;
    color: #FFF;
    font-size: 30px;
    position: absolute;
    right: 10px;
    display: none;
}

header li:hover, button:hover {
    cursor: pointer;
    opacity: 0.8;
    background-color: rgba(255, 255, 255, 0.2);
}
header h1:hover{
    cursor: pointer;
    opacity: 0.8;
    background-color: rgba(255, 255, 255, 0.2);
}

header button:focus~ul {
    height: 407px;
}
.text-left{
    margin-left: 3rem;
    max-width: 520px;
    max-height: 500px
}
.navbar-brand{
    font-family: Hello Honey ;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color:#fff;
    margin-left: 10px;
}
/* Fim Menu do sit */
/* Inicio Conteudo */
#tamanho{
    width: 80vh;
}
/* Fim Conteudo */
/* Resposividade */
@media (max-width: 1090px) {

    header nav{
        flex-direction: column;
    }
    header ul{
        flex-direction: column;
    }

    header ul {
        text-align: start;
        margin: 0;
        height: 0;
    }

    header nav {
        padding: 0;
        align-items: flex-start;
    }

    header h1 {
        font-size: 30px;
        margin: 10px;
    }

    header button {
        display: flex;
    }

    header ul{
        width: 100%;
    }
    header li{
        width: 100%;
    }
    .row{
        -ms-flex-preferred-size:0;
        flex-basis:0;
        -ms-flex-positive:1;
        flex-grow:1;
        max-width:100%;
        justify-content: center
    }
    .text-left{
        margin-left: 0;
    }
}
/* Fim Responsividade */