@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    font-family: "Titillium Web", sans-serif;
    min-height: 100vh;
    width: 100%;
}

header{
    display: flex;
    align-items: center;
    background-color: #000;
    height: 60px;
    padding: 20px;
}

nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo-img{
    height: 50px;
    width: 80px;
    display: flex;
    align-items: center;
}

.linkler{
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    gap: 30px;
}

.linkler li a{
    color: #cfcece;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 600;
}

.linkler li a:hover{
    color: #f5f4f4;
}

.profil{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.profil img{
    width: 50px;
    height: 50px;
    border: 2px solif #FFF;
    border-radius: 50%;
}

.indir-btn{
    font-size: 1.2rem;
    font-weight: 600;
    padding: 10px;
    border-radius: 10px;
    color: #cfcece;
    background-color: #2e2e2e;
    text-decoration: none;
    width: 100px;
    text-align: center;
    text-transform: uppercase;
}

.link-div-hamburger{
    display: none;
}
.menu{
    font-size: 1.4rem;
    color: #FFF;
    cursor: pointer;
    display: none;
}

.indir-btn:hover{
    color: #ffffff;
    font-weight: 600;
    background-color: #B089C8;
}

.container{
    width: 100%;
    height: calc(100vh - 60px);
    background-image: url("../images/arka-plan.jpg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.container .gta6-logo{
    margin: 20px 0 0 20px;
    width: 250px;
    height: 180px;
}

.container .gta6-icerik{
    position: absolute;
    top: 80px;
    right: 20px;
    width: 300px;
    height: 180px;
   
}

.container .gta6-icerik h4{
    font-size: 1rem;
    color: #242323;
    font-weight: 600;
}

.container .cember{
    width: 500px;
    height: 500px;
    position: absolute;
    top: calc(50% - 180px);
    left: calc(50% - 180px);
    margin:-60px 0 0 -80px;
    -webkit-animation:dondur 20s linear infinite;
    -moz-animation:dondur 20s linear infinite;
    animation:dondur 20s linear infinite;
    z-index: 1;
}

@-moz-keyframes dondur { 
    100% { -moz-transform: rotate(360deg); } 
}
@-webkit-keyframes dondur { 
    100% { -webkit-transform: rotate(360deg); } 
}
@keyframes dondur { 
    100% { 
        -webkit-transform: rotate(360deg); 
        transform:rotate(360deg); 
    } 
}

.container .karakterler{
    width: 680px;
    height: 500px;
    z-index: 2;
    position: absolute;
    top: calc(50% - 120px);
    left: calc(50% - 300px);
    
}

@media screen and (max-width: 1199px) {
    .container .gta6-icerik h4{
        font-size: 0.75rem;
    }
}

@media screen and (max-width: 885px) {
    .container .gta6-icerik h4{
        font-size: 0.6rem;
    }

    .container{
        height: 100vh;
    }

    .container .cember{
        top: calc(50% - 80px);
        margin:-60px 0 0 -80px;
    }

    .container .karakterler{
        top: 50%;
    }
}

@media screen and (max-width: 677px) {
   
    .menu{
        display: block;
    }

    .container .gta6-icerik, .container .gta6-logo{
        display: none;
    }

    .container{
        height: 100vh;
        background-size: cover;
    }

    .container .cember{
        top: 50%;
        left: calc(50% - 80px);
        width: 350px;
        height: 350px;
        margin:-60px 0 0 -80px;
    }

    .container .karakterler{
        width: 480px;
        height: 350px;
        top: 60%;
        left: calc(50% - 220px);
    }
    .link-div{
        display: none;
    }
    .link-div-2{
        position: absolute;
        top: 60px;
        height: 300px;
        width: 100%;
        margin-left: -20px;
        background-color: #000;
        color: #FFF;
        z-index: 3;
    } 

    .link-div-hamburger-menu .linkler{
        margin-top: 30px;
    }

    .linkler{
        flex-direction: column;
        width: 100%;
    }
}