@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;
}

.kart-alani {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
     column-gap: 70px;  
    row-gap: 80px;     
    max-width: 900px;
    margin: 0 auto;
}

.kart {
    width: 220px;
    height: 280px;
    perspective: 1000px;
    justify-self: center;
}

.kart-ic {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.kart:hover .kart-ic {
    transform: rotateY(180deg);
}

.kart-on,
.kart-arka {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.kart-on {
    background-color:rgba(12, 23, 53, 0.6);
    color: #fff;
    font-size: 15px;
}

.kart-on img{
	width:200px;
	height:200px;
}

.kart-arka {
    background-color: #6c789d;
    color: white;
    transform: rotateY(180deg);
    font-size: 24px;
    letter-spacing: 2px;
}
