
.lp {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 5rem;
}

.lp__buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    border: none;
    background: none;
}

.lp__button {
    text-align: center;
    padding: 1.1rem 1.5rem;
    color: black;
    border-radius: 6.25rem;
    border: 0.125rem solid gray;
    background: white;
    text-decoration: none;
    transition: transform 0.1s;
    cursor: pointer;
}

.lp__button:hover {
    transform: scale(1.02);
    text-decoration: underline;
}