* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui;
    min-height: 100dvh;
    background-color: #1d1d1d;
    color: white;
}

h1 {
    color: #6A5ACD;
    font-weight: 700;
}

.boton {
    padding: 8px 16px;
    background: #6A5ACD;
    color: white;
    font-weight: 700;
    border-radius: 20px;
    border: none;
    transition: all ease-in-out 100ms;
}

.boton:hover {
    background: #4c19a0;
    color: white;
    transition: all ease-in-out 200ms;
    transform: scale(1.1);
}

.contenedorU {
    display: flex;
    flex-direction: column;
    background-color: #6A5ACD;
    border-radius: 20px;
    padding: 30px 40px;
    margin-top: 50px;
}

h2 {
    text-align: center;
    font-weight: 600;
    color: white;
}

a {
    display: inline-block;
    text-decoration: none;
    color: #1d1d1d;
    font-weight: 600;
    background-color: transparent;
    padding: 8px 16px;
    border: 2px solid #1d1d1d;
    border-radius: 10px;
    transition: all ease-in-out 100ms;
}

a:hover {
    color: white;
    border: 2px solid #4c19a0;
    background-color: #4c19a0;
    transition: all ease-in-out 200ms;
}

.table {
    --bs-table-color: inherit;
    --bs-table-bg: transparent;
}


