body {
    background: linear-gradient(#b18cfe, #001e57);
    color: white;
    font-family: 'Trebuchet MS';
    padding: 20px;
}

* {
    margin: 0;
    box-sizing: border-box;
    padding: 0;
}

.headflex {
    display: flex;
    position: relative;
    justify-content: center;
    padding: 20px;

}

.flex_container {
    display: flex;
    justify-content: center;
}

button {
    width: 100%;
    padding: 0 20px;
    min-width: 80px;
    height: 50px;
    border-radius: 30px;
    border: none;
    align-items: center;
}

.contentMid {
    gap: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    flex-flow: wrap;
}

.return {
    position: absolute;
    left: 0;
}



@media screen and (max-width: 1000px) {
    .contentMid {
        grid-template-columns: 1fr 1fr;
    }

    .return {
        position: static;
    }

}