body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
}

header {
    background-color: #ffcc00; /* Koyu Sarı */
    padding: 20px;
    color: rgb(0, 0, 0);
    
}
.header-img{
    width: 250px; /* Resim boyutunu ayarlayabilirsiniz */
    height: 250px;
    margin: 0 15px; /* Resimlerin arasına boşluk ekler */

}

.about {
    margin: 20px;
    padding: 20px;
    background-color: #505050;
    border-radius: 10px;
}
.img-absolute, .img-absolute1, .img-absolute2, .img-absolute3 {
    position: absolute;
    width: 170px;
    height: 170px;
}

.img-absolute {
    top: 40px;
    left: 15px;
}

.img-absolute1 {
    transform: rotate(45deg);
    top: 40px;
    right: 15px;
}

.img-absolute2 {
    top: 565px;
    right: 50px;
    width: 300px;
    height: 250px;
}

.img-absolute3 {
    top: 565px;
    left: 50px;
    width: 300px;
    height: 250px;
}
/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .img-absolute, .img-absolute1 {
        width: 100px;
        height: 100px;
        top: 20px;
    }

    .img-absolute {
        left: 5px;
    }

    .img-absolute1 {
        right: 5px;
    }

    .img-absolute2, .img-absolute3 {
        width: 80px;
        height: 70px;
        top: 890px;
      
    }

    .img-absolute2 {
        right: 30px;
    }

    .img-absolute3 {
        left: 30px;
	}
	.photos {
        max-width: 100%; /* Mobilde tam genişlik */
        padding: 10px;
    }

    .photos-img {
        max-width: 100%; /* Küçük ekranlarda tam uyumlu */
        padding: 5px; /* Kenarlarda boşluk bırak */
    }
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-logo {
        width: 150px;
    }
}
.contact {
    margin: 20px;
    padding: 20px;
    background-color: #ffcc00;
    border-radius: 10px;
    color: #000000;
    
}

.photos {
   margin: 20px;
    padding: 20px;
    background-color: #505050;
    border-radius: 10px;
    color: #ffffff;
}

.photos-img {
    width: 100%;
    max-width: 500px; /* En fazla 500px genişliğinde olsun */
    height: auto; /* Yüksekliği orantılı ayarla */
    margin: 0 auto; /* Ortalamak için */
    display: block; /* Responsive düzen için */
    border-radius: 10px; /* Hafif yuvarlak köşeler */
}

h1 {
    color: #000000;
}

p {
    font-size: 18px;
}

.icon {
    font-size: 50px; /* Eğer Font Awesome kullanıyorsan */
    width: 50px;  /* Eğer img etiketi kullanıyorsan */
    height: auto;
    margin: 10px;
    color: #ffcc00; /* Koyu sarı ikon rengi */
}

.icon-small {
    width: 20px;  /* İkonların genişliği */
    height: auto; /* Oranını koru */
    vertical-align: middle; /* Yazılarla hizala */
    margin-right: 10px; /* Sağında boşluk bırak */
}

.contact-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-logo {
    width: 250px;
    height: auto;
}
.contact-info {
    flex: 1;
    text-align: center;
    min-width: 260px;
}
