* {
    margin: 0 auto;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.cont {
    display: block;
    width: 90%;
    min-height: 1000px;
    background-color: antiquewhite;
    padding: 10px;
}

.satir {
    margin-bottom: 20px;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.soru {
    width: 300px;
    height: auto;
    background-color: aliceblue;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    overflow: hidden;
}

.head {
    text-align: center;
    width: 100%;
    padding: 8px 0;
    color: white;
    background-color: black;
    font-weight: bold;
    font-size: 16px;
}

.sol, .sag {
    margin-top: 1px;
    width: 50%;
    min-height: 165px;
}

.sol {
    float: left;
    background-color: aqua;
}

.sag {
    float: right;
    background-color: bisque;
}

.heade {
    text-align: center;
    width: 100%;
    height: 25px;
    color: white;
    background-color: black;
    font-size: 14px;
    padding-top: 2px;
}

ul, ol {
    font-size: 14px;
    margin-left: 15px;
    padding: 5px;
}

.buyukul {
    font-size: 18px;
}
.kucukol {
    font-size: 16px;
}

.sagkucuk, .solkucuk, .ortakucuk {
    float: left;
    width: 33%;
    min-height: 165px;
}

.sagkucuk { background-color: aqua; }
.solkucuk { background-color: beige; }
.ortakucuk { background-color: burlywood; }

/* --- RESPONSIVE KISIM --- */
@media (max-width: 1024px) {
    .satir {
        flex-wrap: wrap;
        justify-content: center;
    }
    .soru {
        width: 45%;
        min-width: 250px;
        height: auto;
    }
}

@media (max-width: 768px) {
    .satir {
        flex-direction: column;
        align-items: center;
    }

    .soru {
        width: 95%;
        height: auto;
    }

    .sol, .sag, .solkucuk, .sagkucuk, .ortakucuk {
        float: none;
        width: 100%;
        height: auto;
    }

    .sol, .sag, .solkucuk, .sagkucuk, .ortakucuk {
        margin-bottom: 10px;
    }

    .head {
        font-size: 15px;
    }

    ul, ol {
        font-size: 14px;
    }
}