.container-downloads {
    width: 100vw;
    /* height: 100vh; */
    margin-top: 5rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

h1 {
    margin-top: 2rem;
    text-align: center;
    font-family: "Roboto Condensed", Arial, sans-serif;
}

body>div.container-downloads>p {
    color: var(--new-black);
}

table {
    width: 60%;
}

thead {
    display: table-header-group;
    background-color: var(--new-black);
    color: white;
    text-align: start;
}

th,
td {
    padding: 1rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}

td:last-child,
th:last-child {
    text-align: center;
}

tbody tr:hover {
    background: rgba(118, 201, 232, 0.2);
}

tbody tr {
    color: var(--new-black);
}

thead th:nth-child(3),
td:nth-child(3) {
    text-align: end;
}

tbody>tr>td>a {
    background: var(--new-black);
    padding: .8rem 2rem;
    text-decoration: none;
    color: white;
    border-radius: 2rem;
    transition: 1s;
}

tbody>tr>td>a:hover {
    padding: 1rem 3rem;
}

@media (max-width:990px) {
    .container-downloads {
        margin-top: 0;
        /* margin-bottom: 7rem; */
    }
    table {
        width: 80%;
    }
}

@media (min-width:300) {
    .container-downloads {
        margin-bottom: 3rem;
    }
}