html {
    font-size: 8pt;
}

@media screen and (min-width: 340px) {
    html {
        font-size: 11pt;
    }
}

@media screen and (min-width: 768px) {
    html {
        font-size: 16pt;
    }
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Roboto, sans-serif;
    background-color: #252525;
    color: #e1e1e0;
    overflow: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    height: 100%;
    width: 100%;
    margin: 0 auto;
}

.logo {
    background: url(../img/logo.png) no-repeat center center/contain;
    width: 80%;
    flex-grow: .45;
    margin: 0 auto;
}

h1 {
    margin: 3rem 0 1.5rem;
    font-size: 1.6rem;
    font-weight: 500;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
}

li {
    width: 12rem;
    padding: 0;
    margin: .75rem 1rem;
    font-size: 1.5rem;
    height: 3.5rem;
}   

button {
    background: none;
    border: none;
    position: relative;
    margin: 0;
    padding: 0;
    display: block;
    width: 100%;
}

button a {
    border: 1px #e1e1e0 solid;
    background-color: #e1e1e0;
    border-radius: 10rem;
    color:#252525;
    text-decoration: none;
    position: absolute;
    line-height: 3.5rem;
    font-size: 1.2rem;
    width: 100%;
    display: block;
    top: 0;
    left: 0;
    transition: all 200ms ease-in-out;
}

button a:hover, button a:active, button a:focus {
    background-color: #ffffff;
    color: #252525;
}

.header {
    width: 100%;
    position: relative;
    background-color: #252525;
    padding: 1.5rem 0 .25rem;
    text-align: center;
    color: #ffffff;
    font-family: Roboto, sans-serif;
}

.home-bt {
    position: fixed;
    font-size: 2rem;
    line-height: 2rem;
    height: 100%;
    width: 2rem;
    z-index: 2;
    top: 0.5rem;
    left: 0.5rem;
}

a {
    color:#e1e1e0;
    text-decoration: none;
}

h2 {
    margin: 0;
    font-size: 1.35rem;
    line-height: 2rem;
    font-weight: 400;
}

h3 {
    margin: 0;
    margin-top: .75rem;
    font-size: 1rem;
    font-weight: 400;
    left: -1rem;
    position: relative;
}

h4 {
    font-size: .8rem;
}

@media screen and (max-width: 768px) {
    .header {
        padding: 0 0 .25rem;
    }
    
    h1 {
        font-size: 1.3rem;
    }
    
    h2 {
        margin: 5rem 0 0;
        font-size: 1.1rem;
    }
    
    h3 { 
        margin-top: 0;
        font-size: .9rem;
    }

    h4 {
        font-size: .7rem;
    }
}

.cardapio {
    flex-grow: 1;
}

iframe {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
}


.w90 {
    width: 90%;
}