section {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

h1 {
    font-family: NotoSans_Bold;
    color: black;
}

p {
    font-family: NotoSans; 
}

#voltar {
    height: 50px;
    margin-top: 40px;
    padding: 0px 30px 0px 30px;
    color: #856829;
    background-color: #e7b640;
    border-bottom: 4px solid #e0891b;
    border-left: 4px solid #e0891b;
    border-top: 4px solid #faec68;
    border-right: 4px solid #faec68;
    font-family: NotoSans_Bold;
    letter-spacing: 0.5px;
    transition: all .2s cubic-bezier(.22, .61, .36, 1);
}

#voltar:hover {
    transform: translateY(-2px);
    cursor: pointer;
}

#nao {
    height: 50px;
    margin-top: 40px;
    padding: 0px 30px 0px 30px;
    color: transparent;
    background-color: transparent;
    border: none;
    outline: none;
    font-family: NotoSans_Bold;
    letter-spacing: 0.5px;
    transition: all .2s cubic-bezier(.22, .61, .36, 1);
}

#nao:hover {
    transform: translateY(-2px);
    color: white;
    background-color: #ad3144;
    border-bottom: 4px solid #821c1eea;
    border-left: 4px solid #821c1eea;
    border-top: 4px solid #f15471e1;
    border-right: 4px solid #f15471e1;
    cursor: pointer;
}

@media screen and (max-width:640px) {
    h1 {
        width: 80%;
        margin: 0% 10% 5% 10%;
        font-size: 30px;
    }

    p {
        width: 80%;
        margin: 0% 10% 0% 10%;
        font-size: 14px;
    }
}

@media screen and (min-width: 641px) {
    h1 {
        font-size: 40px;
    }
}