@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif ;
}

.container {
    width: 100vw;
    height: 100vh;
    display: grid;
    grid-template-rows: 80px 70px 1fr 35px;
    grid-template-columns: 1fr 153px;
    gap: 3px;
}

div {
    text-align: center;
    font-size: 1.2em;
    border: 1px solid black;
    background-color: rgba(0, 0, 0, 0.342);
}

.topo {
    background-color: rgb(87, 86, 86);
    grid-row: 1 / 1;
    grid-column: 1 / 3;
    font-weight: bold;
    font-family: Verdana, Tahoma, sans-serif;
}

.menu {
    background-color: gainsboro;
    grid-row: 2 / 2;
    grid-column: 1 / 3;
}

.menu ul {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-decoration: none;
    margin: -2px;
}

.menu ul li {
    list-style: none;
    margin: 0 10px;
    padding: 5px;
    background-color: rgb(69, 77, 85);
    border-radius: 10px;
    transition: all 0.2s ease-in-out;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.445);
}

.menu ul li a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.menu li a:hover {
    color: rgb(109, 124, 151);
    transition: all 0.4s ease-in-out;
    transform: translateY(-2px);
}

.principal {
    background-color: rgb(69, 77, 85);
    grid-row: 3 / 4;
    grid-column: 1 / 2;
    padding: 10px;
}

.secundario {
    background-color: rgb(126, 138, 138);
    grid-row: 3 / 4;
    grid-column: 2 / 3;
    padding: 10px;
}

.rodape {
    background-color: slategray;
    grid-row: 4 / 5;
    grid-column: 1 / 3;
}