@charset "utf-8";
/* CSS Document */
.cevap {
    background-color: rgba(12, 23, 53, 0.6);
    width: 380px;
    height: 55px;
    border-radius: 25px;
    margin: 60px auto;   
    display: flex;       
    align-items: center;
    justify-content: center;
}

.cevap a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #e0e0e0;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    line-height: 55px; 
    padding: 0 20px; 
}

.bolum-basligi {
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.dy-kart-alani {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    row-gap: 60px;
    max-width: 1100px;
    margin: 0 auto 80px auto;
}

.dy-kart {
    width: 230px;
    height: 220px;
    perspective: 1000px;
    justify-self: center;
}

.dy-kart-ic {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.dy-kart:hover .dy-kart-ic {
    transform: rotateY(180deg);
}

.dy-on,
.dy-arka {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px;
    text-align: center;
}

.dy-on {
    background-color:rgba(12, 23, 53, 0.6);
    color: #fff;
    font-size: 15px;
}

.dy-arka {
    transform: rotateY(180deg);
    color: white;
    font-size: 26px;
    letter-spacing: 2px;
}

.dy-arka.dogru {
    background-color: #6c789d;
}


.dy-arka.yanlis {
    flex-direction: column;
    justify-content: center;
    gap: 12px;
	background-color: #6c789d;
}


.dy-arka.yanlis h2 {
    font-size: 28px;
    margin-bottom: 5px;
}

.dy-arka.yanlis p {
    font-size: 15px;      
    line-height: 1.4;
    opacity: 0.95;
}
