@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

*
{
    box-sizing: border-box;
}

body
{
    font-family: 'Quicksand';
    background-color: whitesmoke;
}

.cabecalho 
{
    width: 100%;
    height: 20vh;

    background-color: white;
    box-shadow: 0px 3px 14px #0000003d;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.cabecalho__logo
{
    width: 50px;
}

.cabecalho__titulo
{
    font-size: 1.5em;
    font-weight: 500;
    text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.26);
}

.principal
{
    width: 100%;
    padding: 20px 50px;

    display: grid;
    justify-items: center;
    grid-template-columns: 1fr 1fr;
    gap: 20px 30px;
}

.principal__categoria
{
    width: 100%;
}

.edicao
{
    grid-column: span 2;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.principal__categoria__titulo
{
    font-size: 1.3em;
    font-weight: 500;
    text-align: center;
    padding: 10px 0;
}

.edicao .principal__categoria__titulo
{
    grid-column: span 2;
}

.principal__categoria__tabela
{
    width: 100%;
    box-shadow: 3px 3px 5px #00000063;
}

tr:nth-child(odd) td
{
    background-color: white;
}

tr:nth-child(even) td
{
    background-color: rgb(231, 231, 231);
}

.principal__categoria__item__descricao
{
    padding: 15px;
    border-right: 1px solid rgb(189, 189, 189);
    font-size: .9em;
    font-weight: 500;
}

.principal__categoria__item__comando
{
    padding: 15px 5px;
    text-align: center;
}

kbd
{
    display: inline-block;
    
    border: 1px solid rgb(59, 59, 59);
    padding: 5px;
    border-radius: 6px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.342);

    background-color: #3C99D4;
    color: white;

    font-weight: 700;
}