.forms {
    border-radius: 10px;
    line-height: 2;
    margin: 1rem auto;
    width: 70%;
    font-weight: 800;
    font-size: 20px;
    text-indent: 1%;
}
.marginalised {
    border: 5px solid burlywood;
    border-radius: 0.5em;
    font-weight: 700;
}
.box{
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #202020;
    gap: 5px;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere; /* or 'break-word' */
}
.box p {
    text-align: left;
}
.threeboxes{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 5%;
}
@media all and (max-width: 990px) {

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