/* Alinhamento do conteúdo da página */
table {
    margin-left: 12%;
    margin-right: 12%;
    margin-bottom: 10%;
    line-height: calc(1.3rem*1.5);
    font-size: 0.8rem;
    font-style: none;
    text-align: justify;
    border-collapse: collapse;
}

/* Determinação de bordas e ajustes */
table th,
td {
    border-bottom: 2px solid black;
}

.coluna1 {
    padding-right: 5px;
}

.coluna2 {
    padding-left: 5px;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

table h3,
h4 {
    text-align: center;
}

table ul {
    list-style: none;
}

.coluna1 {
    width: 80%;
    border-right: 2px solid rgba(0, 0, 0, 0.65);
}

#cubos {
    background-color: black;
    padding: 3px;
}

#uninter {
    background-color: rgb(13, 56, 102);
    padding: 3px;
}

.italico {
    font-style: italic;
    text-align: center;
    font-size: 0.65rem;
}

/* Ajustes para responsividade */
@media screen and (max-width:1000px) {
    table {
        display: block;
        text-align: justify;
        margin-bottom: 15%;
        margin-top: 15%;
    }

    table td,
    tr {
        display: inline-block;
        border: transparent;
    }

    .coluna1 {
        border: transparent;
        width: 100%;
        border-bottom: 2px dashed black;
    }

    .coluna2 {
        display: block;
        text-align: center;
    }

    th {
        font-size: 0px;
    }

    table tr {
        border-bottom: 2px solid black;
        border-top: 2px solid black;
        margin-bottom: 5px;
    }
}