.btn-wrapper {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.h1 {
    color: var(--green);
    margin-bottom: 10px;
}
.legal-information {
    text-align: center;
}

@media screen and (max-width: 400px) {
    .h1 {
        margin-bottom: 25px;
    }
    .btn-wrapper {
        gap: 10px;
        justify-content: center;
        flex-direction: column;
    }
    .btn-wrapper .btn {
        margin: 0;
    }
}