#mobile {
    display: none;
}
.infoSection {
    width: 60%;
    margin: 0 auto 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.sideOne {
    width: 40%;
    display: flex;
    flex-direction: column;
}
.sideTwo {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sideOne img {
    display: block;
    width: 80%;
    aspect-ratio: 1/1;
    border-radius: 30px;
    overflow: hidden;
}

h1 {
    font-size: 35px;
}

p {
    font-size: 20px;
}

.start {
    align-items: start;
    text-align: left;
}

.end {
    align-items: end;
    text-align: right;
}

@media screen and (max-width: 1200px) {
    .infoSection {
        width: 100%;
        flex-direction: column;
    }
    .sideTwo, .sideOne {
        width: 100%;
    }
    .sideOne img {
        width: 50%;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .start, .end {
        align-items: center;
        text-align: center;
    }
    #desktop {
        display: none;
    }
    #mobile {
        display: flex;
    }
}

.divider {
    width: 100%;
    height: 20px;
}