main {
    padding: 8vh 10vw;
}

main li {
    list-style: none;
}

main > div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

main img {
    max-width: 30vw;
}

@media only screen and (max-width: 992px) {
    main h2 {
        font-size: xx-large;
    }
    
    main > div {
        flex-direction: column;
        align-items: center;
    }

    main img {
        max-width: 80vw;
    }

    main ul {
        padding: 0;
    }
}

.bg-custom {
    background-color: #262746 !important;
}

.bg-custom-white {
    background-color: #faf5ef !important;
}

.btn:hover {
    filter: brightness(1.2);
}