/* INÍCIO RESET GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #000000;
}

* p {
    font-family: inter, sans-serif;
}

* h1,h2,h3 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
/* FIM RESET GLOBAL */

/* INÍCIO BOTÃO PRINCIPAL */
.btn {
    background: rgb(36, 167, 255);
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #FFFFFF;
    padding: 16px 24px;
    border: none;
    transition: 0.6s all;
    text-decoration: none;
}

.btn:hover {
    background-color: #FFFFFF;
    color: rgb(36, 167, 255);
}
/* FIM BOTÃO PRINCIPAL */