body {
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-direction: column;
    background-color: black;
    align-items: center;
    justify-content: center;
    scrollbar-width: none;
    overflow: -moz-scrollbars-none;
}

.bg-image-overlay {
    background-image: url('img/bg.png');
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}
@keyframes fadeInEffect {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.body-fade-in {
    animation-name: fadeInEffect;
    animation-duration: 1s; /* Animasyonun süresi 1 saniye */
    animation-timing-function: ease-in;
    animation-fill-mode: forwards;
}
::-webkit-scrollbar {
    display: none;
}
#imagelogo{
    transition: transform 0.3s ease;
}
#imagelogo:hover {
    transform: scale(1.15);
}
#imagelogo:active {
    transform: scale(1.2);
}
.container {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fixed-footer {
    margin-top: 60px;
}

.logo {
    margin-bottom: 20px;
}

.video iframe {
    width: 700px;
    height: 300px;
    margin: 20px 0;
}
.server-img{
    transition: transform 0.3s ease;
    z-index:10;
}
.server-img:active {
    transform: scale(1.2);
}
.server-img:hover {
    transform: scale(1.15);
}

.servers {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.server {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 10px;
    text-align: center;
}

.server img {
    max-width: 90%;
    height: auto;
}

.footer {
    margin-top: 20px;
    font-size: 12px;
}

.imageButton {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 0;
    overflow: hidden;
}

.imageButton img {
    display: block;
    width: 100%;
    margin-left: 18px;
}

.buttonText {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: bold;
}

.imageButton:hover {
    filter: brightness(1.2);
}

/* Mobil Uyum */
@media only screen and (max-width: 768px) {
    .video iframe {
        width: 90%;
    }

    .imageButton img {
        margin-left: 50px;
    }

    .servers {
        flex-direction: column;
        align-items: center;
    }

    .server {
        margin: 10px 0;
    }

    .server img {
        max-width: 70%;
    }

    body {
        overflow: auto;
    }
}