:root
{
    /*variáveis de cores*/
    --azul-primario: #062af7;
    --azul-secundario: #001799;
    --preto: #141414;
}

/*cofgs globais*/
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Elementos base */
body
{
    /*utilizando a variável*/
    height: 100vh;
    background-color: var(--preto);
    font-family: Arial, Helvetica, sans-serif;
    color: white;
}

header .container
{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-right: 20px;
}

header .container a
{
    text-decoration: none;
}

header .logo
{
    /*utilizando a variável*/
    color: var(--azul-primario);
    font-size: 40px;
    line-height: 60px;
}

header nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
}

header nav a
{
    color: #aaa;
}

header nav a:hover
{
    cursor: pointer;
    color: #fff;
    transition: 200ms;
}

/* Jogo Principal */
main .jogo-principal
{
    width: 100%;
    font-size: 16px;
    background: linear-gradient(rgba(0, 0, 0, 50%), rgba(0, 0, 0, 50%))100%, url('../images/imagem-capa.jpg');
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.container
{
    margin-left: 20px;
}

.jogo-principal .container 
{
    width: 70%;
    height: 100%;
    display: blok;
    margin-bottom: 15%;
}

.jogo-principal .titulo
{
    margin-top: 15%;
    font-size: 40px;
    font-family: 'Trebuchet MS', Arial, sans-serif;
}

.jogo-principal .descricao
{
    margin-top: 10px;
    margin-bottom: 40px;
    line-height: 20px;
    text-align: justify;
}

.jogo-principal .botoes
{
    display: flex;
    flex-direction: row;
}

button.botao
{
    background-color: rgba(0, 0, 0, .50);
    border: none;
    border-radius: 3px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    margin-right: 15px;
}

.botao:hover
{
    cursor: pointer;
    background-color: white;
    color: black;
    transition: 200ms;
}

.botao i
{
    margin-right: 10px;
    font-size: 1.3em;
}

h3
{
    font-family: 'Trebuchet MS', Arial, sans-serif;
    font-size: 30px;
    padding: 20px 0px 10px 0px;
    color: #fff;
}

.carrosel-jogos
{
    padding: 0 20px;
    margin-bottom: 20px;
}

.box-game
{
    height: 100%;
    width: 100%;
    display: block;
}

footer
{
    background-color: var(--azul-secundario);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer p:first-child
{
    margin: 0 25px 0 0;
}

footer p:last-child
{
    margin: 0 0 0 25px;
}

footer a
{
    text-decoration: none;
    color: violet;
}