* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "TASA Explorer", sans-serif;
}

body {
    background-color: var(--main-background);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.first {
    margin: 1rem 1rem 1rem 16rem;
    width: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


.first_1 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.first_1 h1 {
    color: var(--main-text);
    font-size: 2rem;
}

.first_1 button {
    width: fit-content;
    padding: 1rem;
    border-radius: 1rem;
    color: var(--main-text);
    background-color: var(--col-2);
    border: none;
    transition: all 0.3s ease;
}

.first_1 button:hover {
    background-color: var(--col-3);
    cursor: pointer;
    transition: all 0.3s ease;
}





table {
    width: 100%;
    border-collapse: collapse;
}

#header {
    background-color: var(--col-2);
    color: var(--main-text);
}

td {
    align-items: center;
    padding: 0.5rem;
    border-bottom: 2px solid var(--col-2);
}

tr {
    cursor: pointer;
}

#imgtd {
    width: 3rem;
    height: 2rem;
}

.item_buttons {
    background: none;
    border: none;
    transition: all 0.3s ease;
    background-color: var(--col-2);
    padding: 0.25rem;
    border-radius: 0.25rem;
}

.item_buttons:hover {
    background-color: var(--col-3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.item_buttons img {
    height: 1.5rem;
}

table img {
    height: 2rem;
    display: block;
    object-fit: cover;
    border-radius: 5px;
}

tr:last-child td {
    border-bottom: none;
}

tr:first-child td {
    border-bottom: none;
}

table h3 {
    font-size: 1.2rem;
    color: var(--main-text);
}

table p {
    font-size: 1rem;
    color: var(--main-text);
}

@media (max-width: 768px) {
    .first {
        margin: 6rem 2%;
        width: 96%;
    }

    .first_1 h1 {
        font-size: 1rem;
    }

    .first_1 button {
        font-size: 0.8rem;
    }

    table h3 {
        font-size: 0.8rem;
    }
}