.imgleft {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    margin: 80px auto;
}
.imgright {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap-reverse;
    align-items: center;
    text-align: center;
    margin: 80px auto;
}
.socialicons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}
.page-links .button {
    margin: 10px 0;
    min-width: 550px;
}
.page-links .justContent a {
    display: inline-block;
}
@media (max-width: 768px) {
    .imgleft, .imgright {
        gap: 0;
    }
    .page-links .button {
        min-width: unset;
        margin: 0;
        font-size: 1.2rem;
    }
    .page-links .justContent a {
        display: flex;
        justify-content: center;
    }
}