/* WRAPPER */
.legal-wrapper {
    padding-top: 40px;
    padding-bottom: 60px;
    display: flex;
    justify-content: center;
}

/* CARD */
.container {
    max-width: 800px;
    width: 90%;

    background: #111;
    padding: 30px;
    border-radius: 14px;
}

/* HEADLINE */
.container h1 {
    color: #4ade80;
    margin-bottom: 20px;
}

/* TEXT */
.container p {
    color: #bbb;
    margin-bottom: 12px;
}

/* BACK BUTTON */
.back-btn {
    position: fixed;
    top: calc(80px + 20px);
    left: 60px;
    left: 60px;
    width: 50px;
    height: 50px;
    background: #4ade80;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

/* MOBILE BACK BUTTON */
@media (max-width: 768px) {
    .back-btn {
        left: 20px;
        top: calc(80px + 20px);
    }
}

.back-btn img {
    width: 22px;
    height: 22px;
}

/* HOVER */
.back-btn:hover {
    transform: scale(1.08);
}