main{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: auto;
    font-size: 1.2rem;
}

/* Fix for title size */
main > h1 {
    font-size: 3em;    
}

.imgDiv{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.imgDiv img{
    width: 40vw;
    height: auto;
    border-radius: 15px;
}

.imgDiv p{
    width: 40vw;
    text-align: center;
    font-size: 2em
}
@media screen and (max-width: 840px){
    .imgDiv{
        flex-direction: column;
    }
    .imgDiv img{
        width: 80%;
    }
    .imgDiv p{
        width: 80vw;
    }
    #imgDivL{
        flex-direction: column-reverse;
    }
}

@media screen and (max-width: 375px) {
    main h1 {
        font-size: 2em;
    }
}