@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Nunito";
    background-color: antiquewhite;
}

.conteudo {
    text-align: center;
    background-color: #f88c0f;
    color: aliceblue;
    padding: 20px;
    border-radius: 10px;
}
