@charset "UTF-8";

html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    background-color: rgba(244, 247, 252, 1);
    overflow-x: hidden; 
}

body {
    font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
    color: rgba(51, 51, 51, 1);
}

.ana_kutu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 20px;
    padding: 30px;
    box-sizing: border-box;
 
}

.temel_kutu {
    background-color: rgba(234, 242, 255, 0.7); /* Açık mavi tonlarında pastel renk */
    width: 320px;
    height: 300px;
    border: 1px solid rgba(0, 0, 0, 0.1); /* Hafif gri tonunda */
    box-shadow: 4px 4px 15px rgba(169, 169, 169, 0.3), 0px 4px 10px rgba(169, 169, 169, 0.2); /* Sağ ve alt tarafında gri gölge */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    margin-top: 5px;
}

.temel_kutu:hover {
    transform: translateY(-10px);
    box-shadow: 4px 4px 20px rgba(169, 169, 169, 0.5), 0px 4px 15px rgba(169, 169, 169, 0.3); /* Gölge efekti arttırıldı */
}

.div_title {
    background-color: rgba(225, 235, 255, 0.9);
    padding: 15px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
/*     background-color: rgba(74, 112, 139, 1); */
/*     border-top-right-radius: 12px; */
    color: rgba(68, 68, 68, 1); /* Koyu gri yazı rengi */
}

.div_aciklama {
	padding: 15px;
	font-size: 13px;
	
	text-align: center;
	background-color: rgba(218, 238, 255, 0.8);

	height: 80px; /* Sabit yükseklik */
    overflow: hidden;

    box-sizing: border-box;
    position: relative;
}

.div_resim {
	 border-radius: 360px;
	
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 150px; /* Resim yüksekliğini azaltmak için değiştirildi */
    
}

.resim {
	
	 border-radius: 360px;
    display: block;
    width: 100%;
    height: auto;
    max-width: 250px;
    max-height: 100px; /* Resim yüksekliğini biraz daha küçülttüm */
    margin: 0 auto;
    border-radius: 8px;
    object-fit: cover;
}

.url_link {
    color: rgba(0, 119, 204, 1); /* Canlı mavi tonları */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.url_link:visited {
    color: rgba(0, 95, 163, 1); /* Soluk mavi tonları */
}

.url_link:hover {
    color: rgba(0, 95, 163, 1); /* Soluk mavi tonları */
    text-decoration: underline;
}
