body {
    /* height: 100svh; */
    margin: 0;
    background: var(--cream);
}

/* main {
    display: flex;
    justify-content: center;
} */

.redirect {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100svh;
    width: 100%;
    margin: 0 auto;
    display: none;
}

h2,
h3,
p {
    color: var(--black);
}

h2 {

    font-size: clamp(1.4em, 2.5vw, 2em);
    font-weight: 700;
    text-align: center;
    padding-top: 2em;
    /* padding-top: 4rem; */
    padding-bottom: 1em;
    /* padding-bottom: 2rem; */
}

h3 {
    font-size: clamp(1.1em, 1.8vw, 1.17em);
}

.lines-grid, .lines-grid * {
    transition: none;
}

.lines-grid {
    display: none;
    grid-template-columns: 1fr 1fr;
}

.lines-grid .l2 {
    grid-column: span 2;
}

.lines-grid .r {
    border-right: 2px solid var(--black);
}

.lines-grid .l {
    border-left: 2px solid var(--black);
}

.lines-grid .trl {
    border: 4px solid var(--black);
    border-bottom: none;
    position: relative;
}

.lines-grid .a1 {
    height: 0em;
}

.lines-grid .a2 {
    width: 0em;
    height: 0em;
}

main .dot {
    height: 0em;
    width: 0em;
    border-radius: 30px;
    background-color: var(--black);
    position: absolute;
}

main .dot:first-of-type {
    bottom: -0.6em;
    left: -0.8em;
}

main .dot:last-of-type {
    bottom: -0.6em;
    /* right: -0.8em; */
    right: -1.1em;
}

.content {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    padding-top: 2em;
    padding-bottom: 6em;
}

.content, .content * {
    transition: none;
}

.content .other-buttons {
    /* margin-bottom: 6em; */
}

.content .form {
    /* margin-left: .5em; */
}

.content .item {
    display: flex;
    flex-direction: column;
    /* border: 3px solid cornflowerblue; */
    align-items: center;
    opacity: 0;
    /* padding: 0 1em; */
}

.content .other-buttons h3 {
    margin-bottom: 2em;
}

.button,
button {
    /* font-size: clamp(1.4rem, 3.5vw, 1.8rem); */
    font-size: clamp(1.2rem, 2.3vw, 1.8rem);
    text-align: center;
    line-height: 1.2;
}

.button {
    width: min(16em, 90%);
}

.content .other-buttons .button:nth-of-type(2) {
    margin: 1em 0;
}

form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    gap: 1em 3em;
    padding: 1em 0;
}

input,
textarea {
    width: min(21.6em, 90%);
}

.divider {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    column-gap: 1em;
    margin-top: 6em;
    margin-bottom: 1em;
}

.divider:first-of-type {
    margin-top: 1em;
}

.circle {
    height: 2.5em;
    width: 2.5em;
    border: 4px solid var(--black);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

.circle span {
    font-size: 1.2em;
    font-weight: bold;
    color: var(--blue);
}

.line {
    height: 4px;
    /* width: 55%; */
    /* width: 65%; */
    width: 0%;
    background-color: var(--blue);
    /* opacity: 0; */
}


@media (min-width:650px) {
    article {
        width: 100%;
    }

    .content {
        grid-template-columns: 1fr 1fr;
    }

    .content .item {
        padding: 0 1em;
    }

    .content .other-buttons h3 {
        margin-bottom: 3em;
    }

    .lines-grid {
        display: grid;
    }

    .divider {
        display: none;
    }
}