* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Definição das cores */
body {
    /* cores de texto */
    --text-white: #ffffff;
    --text-dark: #142136;

    /* cores de fundo */
    --bg-grey-light: #f5f5f5;
    --bg-white: #ffffff;
    --bg-blue-dark: #142136;
    --bg-indigo: #6366f1;

    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif, sans-serif;
    line-height: 1.7;
    background-color: var(--bg-grey-light);
}

.dark {
    --text-white: #e6e6e6;
    --text-dark: #ffffff;
    --bg-grey-light: #142136;
    --bg-white: #22395d;
    --bg-blue-dark: #142136;
    --bg-indigo: #7577e1;
}

.container {
    width: 100%;
    margin: 40px auto;
    display: flex;
    padding: 20px;
    flex-direction: column;
}

#text-wrapper {
    margin: 0;
    padding: 0;
}

#text-wrapper li {
    width: 100%;
    padding: 20px;
    background-color: var(--bg-white);
    margin-bottom: 20px;
    border-radius: 10px;
    list-style: none;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
}

#text-wrapper a {
    font-size: 30px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
}

.heading {
    letter-spacing: 1px;
    font-weight: 900;
    margin-bottom: 40px;
    color: var(--text-dark);
    text-align: center;
    text-transform: uppercase;
}

.heading a {
    color: var(--text-dark);
    text-decoration: none;
}

.heading span{
    font-size: xx-large;
    color: var(--text-dark);
    text-decoration: none;
    text-transform: initial;
}

.buttons {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.button {
    width: 200px;
    padding: 5px;
    height: 40px;
    border: none;
    border-radius: .25rem;
    font-family: inherit;
    cursor: pointer;
    background-color: var(--bg-indigo);
    color: var(--text-white);
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
}

.item-inner {
    padding-left: 16px;
}


.item-inner a {
    color: #212121;
    font-weight: 500;
    min-width: 0;
    -webkit-box-flex: 1;
    -webkit-flex-shrink: 1;
    -ms-flex: 0 1 auto;
    flex-shrink: 1;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

footer {
    text-align: center;
    margin: 40px auto 0;
    color: var(--text-dark);
    text-decoration: none;
}

footer a {
    text-decoration: none;
}

footer i {
    color: red;
    margin: auto 5px;
}