﻿
/*Arkaplan video için*/
html, body {
    margin: 0;
    padding: 0;
    display: grid; /*Logo için*/
    position: fixed;
}

.full-screen-video-container {
    
    height: 100vh;
    width: 100vw;
    overflow-x: hidden;
    display:block;
    justify-content: center;
    align-items: flex-start;
}

    .full-screen-video-container video {
        z-index: -1;
        position: absolute;
        width: auto;
        height: auto;
        min-width: 100%;
        min-height: 100%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

.full-screen-video-content {
    background-color: white;
    color: #333;
    padding: 20px;
    font-size: 70px;
    font-weight: bold;
    margin-top: 200px;
}



/*Logo için*/
html {
    min-height: 100%;
}



/*Logo Music için*/
#play,
#pause {
    float: left;
    width: 20px;
    top: 205px; /* Üstten 0 piksel */
    left: 155px; /* Soldan 0 piksel */
}

    #play:hover,
    #pause:hover {
        cursor: pointer;
    }

#pause {
    display: none;
}

/*Yatay menü bar için*/

/*ul {
    list-style-type: none;
    margin-left: 25%;
    margin-right: 20%;
    margin-top: 80px;
    padding: 0;
    overflow: hidden;
    background-color: #4fb99f;
    width: auto;
    height: auto;
    min-width: 100%;
}
*/

/*li {
    float: left;
    border-bottom: 3px solid #4fb99f;
}

    li.active {
        background-color: #068587;
        border-bottom: 3px solid #f2b134;
    }*/

  /*  li a {
        display: inline-block;
        color: #fff;
        padding: 42px 24px;
        text-decoration: none;
        font-size: 18px;
    }*/

   li:hover {
        background-color: #068587;
        border-bottom: 3px solid #f2b134;
    }

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #4fb99f;
    min-width: 130px;
    z-index: 1;
}

    .dropdown-content a {
        padding: 12px 16px;
        display: block;
        font-size: 16px;
    }

        .dropdown-content a:hover {
            background-color: #f2b134;
        }

.dropdown:hover .dropdown-content {
    display: block;
    margin-top: 3px;
}

