/* .optionsall{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-start;
  } */


.options {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    font-family: var(--bigFont);
}

.options div:nth-child(2) h5{
    font-weight: 600;
}

.options div:nth-child(2) p a{
    text-decoration: none;
    color: var(--textColor1);
}

.maintext h2{
    font-size: 3.8vw;
    font-family: var(--logoFont);
}


@media screen and (max-width:768px) {
    .maintext h2{
        font-size: 4.8vw;
    }
}

@media screen and (max-width:576px) {

    .options  h5{
        font-size: 18px;
    }

    .options  p{
        font-size: 14px;
    }
}