
/* Genel stil tanımları */
body {
    margin: 0;
    font-family: 'Saira', sans-serif;
    background-color: #020b12;
    color: white;
}

/* Landing page video stil */
.landing-video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
    overflow: hidden;
}
.landing-video {
    max-width: 100%;
    max-height: 100%;
}

/* Hamburger menü stili */
.hamburger-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: black;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 100;
}
.hamburger-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
}
.hamburger-menu ul li {
    margin: 5px 0;
}
.hamburger-menu ul li a {
    text-decoration: none;
    color: white;
    font-size: 25px;
}
.hamburger-menu ul li a:hover {
    color: #e9204f;
}

.hamburger-menu.active ul {
    display: block;
}
