* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'Bungee Inline', system-ui;
    position: relative;
}

.video-container {
    position: fixed; /* Daha iyi bir hizalama için fixed kullanıyoruz */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#bgVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content {
    height: 100%;
    display: grid;
    grid-template-rows: auto 1fr;
    align-items: center;
    justify-items: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.logo {
    margin-top: 40px;
    margin-bottom: 0;
}

.logo img {
    max-width: 300px;
    height: auto;
}

h1 {
    font-family: 'Bungee Inline', system-ui;
    font-size: 1.6rem;
    color: #4fff00;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(79, 255, 0, 0.5);
    letter-spacing: 2px;
}

.contact-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: -220px;
}
.contact-btn {
    display: inline-block;
    margin-top: 0;
    transition: transform 0.3s ease;
    margin-top: 50px;
}

.contact-btn img {
    max-width: 200px;
    height: auto;
}

.contact-btn:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .logo {
        margin-top: 20px;
    }
    
    .logo img {
        max-width: 200px;
    }
    
    h1 {
        font-size: 1.8rem;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }
    
    .contact-btn img {
        max-width: 150px;
    }
}
