a {
    text-decoration: none;
}

h2 {
    margin-bottom: 0.5rem;
}

h6 {
    margin-bottom: 2rem;
}

.container {
    max-width: 600px;
    margin-top: 5rem;
    padding-top: 2.5rem;
    padding-right: 3rem;
    padding-bottom: 2.5rem;
    padding-left: 3rem;
    border-style: solid;
    border-color: rgb(24, 26, 34);
    border-radius: 1rem;
    border-width: 1px;
    background: linear-gradient(160deg,rgb(15, 16, 21) 0%, rgb(19, 23, 31) 100%);
    filter: drop-shadow(0.2rem 0.2rem 0.5rem rgb(0, 0, 0, 0.3));
}

.centered {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
}

.middle {
    text-align: center;
}

.footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}

@media (max-width: 768px) {
    h6 {
        margin-bottom: 1.5rem;
    }
    .container {
        max-width: 320px;
        margin-top: 1rem;
        padding-top: 1.5rem;
        padding-right: 2rem;
        padding-bottom: 1.5rem;
        padding-left: 2rem;
    }
    .centered {
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }
}