/* TIPOS DE LETRA */

@import url('https://fonts.googleapis.com/css2?family=Bayon&family=Ubuntu:wght@500&display=swap');

/* 'Ubuntu' */

@import url('https://fonts.googleapis.com/css2?family=Play:wght@700&display=swap');

/* 'Play' */


/* COR DE FUNDO E DE TEXTO */

body {
    background-color: #1a1a1a;
    color: white;
}


/* MODO ESCURO */

.light-mode {
    background-color: #dadada;
    color: black;
    transition-duration: 0.4s;
}


/* ajustes modo escuro ao texto */

.light-mode h1 {
    color: black;
    transition-duration: 0.4s;
}

.light-mode h2 {
    color: black;
    transition-duration: 0.4s;
}

.light-mode h3 {
    color: black;
    transition-duration: 0.4s;
}

.light-mode button {
    background-color: #ccc;
    color: black;
    transition-duration: 0.4s;
}


/* AJUSTES GERAIS TEXTO E IMAGEM */

h1 {
    font-family: 'Play';
    text-align: center;
}

h1 img {
    max-width: 100%;
}

.sobre {
    color: rgb(255, 94, 0);
    font-size: 60px;
    transition-duration: 0.4s;
}

h2 {
    font-family: 'Play';
    color: white;
    text-align: center;
}

h3 {
    font-family: 'Play';
    color: white;
    text-align: center;
}

button {
    font-family: 'Play';
    color: white;
    background-color: #110f0f;
    border-radius: 7px;
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2%;
}

a {
    text-decoration: none;
}


/* BARRA DE DESLOCAMENTO (scroll bar) */

 ::-webkit-scrollbar {
    width: 10px;
}

 ::-webkit-scrollbar-track {
    background-color: transparent;
}

 ::-webkit-scrollbar-thumb {
    background-color: #d6dee17a;
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: content-box;
}

 ::-webkit-scrollbar-thumb:hover {
    background-color: #a8bbbf7c;
}