main ol {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    li{

    }
}
li{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 15rem;
}
@media (min-width: 921px) {

    main ol {
        flex-direction: row;
        justify-content: space-evenly;
    }
}