#main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    position: relative;
    z-index: 0;
}

body {
    background-image: url("../Resimler/bg-image.jpg");
    margin: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.main-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 768px;
    gap: 1rem;
    padding-bottom: 2rem;
    position: relative;
    z-index: 2;
    }

.comm-box {
    flex: 1 1 250px;
    max-width: 300px;
    aspect-ratio: 1/1;
    height: 300px;
    padding: 2rem 1rem;
    background-color: #FFD700;
    color: #444;
    border-radius: 1rem;
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    transition: background-color .5s ease-in-out, color .5s ease-in-out;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.comm-box:hover {
    background-color: #444;
    color: #fff;
}

.comm-box:hover a {
    color: #fff;
}

.comm-container i {
    font-size: 2rem;
}

.comm-container h3 {
    font-size: 1.25rem;
}

iframe {
    width: 100%;
    display: block;
    min-height: 400px;
}

#main-container::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.main-section h2 {
    font-size: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: solid #FFD700 0.2rem;
}

.comm-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;    
    position: relative;
    z-index: 2;
}

.mail a {
    color: #444;
    transition: color .5s ease-in-out;
    text-decoration-line: none;
}

.google-maps {
    width: 100%;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}