body {
    background: linear-gradient(#b18cfe, #001e57);
    color: white;
    font-family: 'Trebuchet MS';
}

* {
    margin: 0;
    box-sizing: border-box;
    padding: 0;
}

.container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}





.contentleft,
.contentright,
.contentMid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}


.contentleft,
.contentright {
    max-width: 300px;
}





.contentMid {
    width: 300px;
    margin-left: auto;
    margin-right: auto;

}

img {
    width: 80%;
    border-radius: 50px 50px 50px 50px;
    border: none;
}

@media screen and (max-width: 1000px) {
    .container {
        flex-direction: column;
    }

    .contentMid {
        order: -1;
        text-align: center;
    }

    .contentleft,
    .contentright {
        max-width: 100%;
    }
}