body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

#background {
    background: url(images/716f3aba-a0e2-449c-a7bf-0c2413f0f3f0.jpg) center/cover no-repeat;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

#background::after {

content: "";
    position: fixed;
    top: 0;
    height: 100vh;
    left: 0;
    right: 0;
    z-index: -1;
    background: linear-gradient(rgba(20, 20, 20, 0.521), rgba(0, 0, 0, 0.603)), url(./images/222.webp);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

#content-container {
    display: flex;
}

#contact-info,
#map {
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    box-sizing: border-box;
}

#contact-info {
    max-width: 400px;
    width: 100%;
    margin-right: 20px;
}

#map {
    width: 500px;
}


a{
    color: white;
    text-decoration: none;
}

.logo {
    position: absolute;
display: flex;
top: 20px;
width: 100%;
}


.logo img {
    height: 7rem;
    margin: auto;  
}

/* Ekran boyutu 600 pikselden küçükse (mobil cihazlar için) */
@media (max-width: 600px) {
    #contact-info,
    #map {
        width: 94%;
        margin-right: 0;
        margin-bottom: 20px;
        height: 224px;
    }

p {
    font-size: 11px;
}

    a {
        font-size: 11px;
    }
    #content-container {
        flex-direction: column;
        align-items: center;
    }

    #contact-info {
        max-width: 100%; /* İletişim bilgilerinin maksimum genişliği ekran genişliği kadar olacak şekilde ayarlar */
        margin-right: 0;
    }

    #map {
        width: 94%;
        max-width: none; /* Harita genişliği için maksimum sınırlamayı kaldırır */
    }
}

