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

html {
    scroll-behavior: smooth;
}


img {
    display: block;
}

body {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.mobile {
    display: none;
}

.projeheader {
    width: 100%;
    height: 80px;
    box-shadow: 0 0 10px black;
    align-content: center;
    background-color: white;
    z-index: 15;
}

.projeheader ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
    gap: 35px;
}



.projeheader>ul>li a {
    text-decoration: none;
    color: black;
    cursor: pointer;
    padding: 15px 25px;
    box-shadow: 0 0 5px rgba(0, 0, 0, .3);
    border-radius: 15px;
}

.websitesi {
    width: 100%;
    height: 80px;
    box-shadow: 0 0 10px black;
    align-content: center;
    background-color: white;
    z-index: 15;
}

.websitesi ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
    gap: 35px;
}



.websitesi>ul>li a {
    text-decoration: none;
    color: black;
    cursor: pointer;
    padding: 15px 25px;
    box-shadow: 0 0 5px rgba(0, 0, 0, .3);
    border-radius: 15px;
}



section {
    overflow: hidden;
    width: 100%;
    height: 100vh;
    box-shadow: 10px 0 10px rgba(0, 0, 0, 0.3),
        -10px 0 10px rgba(0, 0, 0, 0.3);
    background-color: #e0dcdc;
    transition: 0.8s ease;
    opacity: 0;
}



.adminContainer {
    display: flex;
    justify-content: space-around;

}

.adminResim {
    width: auto;
    height: calc(100vh - 85px);
    border-radius: 15px;
}

.adminContainer .leftAdmin {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.leftAdmin h1 {
    font-size: 50px;
}

.socialMedia {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}



.socialBox {
    border: solid 2px black;
    padding: 5px;
    border-radius: 5px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;


}

.socialBox a {
    cursor: pointer;
    z-index: 99;
}

.socialBox i {
    font-size: 30px;
    margin: 0;
    padding: 0;
    cursor: pointer;
    position: relative;
    z-index: 99;

}

.socialBox::after {
    content: '';
    left: -100px;
    top: 0;
    background-color: #fcfcfc71;
    width: 50px;
    height: 100%;
    transform: skewX(-10deg);
    position: absolute;
    transition: all 1s ease;
    pointer-events: none;
}

.socialBox.active::after {
    left: 115px;
}

.socialBox:nth-child(1) i {
    color: #1877F2;
}

.socialBox:nth-child(2) i {
    color: #0088CC;
}

.socialBox:nth-child(3) i {
    color: #E1306C;

}

.socialBox:nth-child(4) i {
    color: #000000;
}

.socialBox:nth-child(5) i {
    color: #000000;
}









@media (max-width:1024px) {
    .leftAdmin h1 {
        font-size: 40px;
    }

    .leftAdmin h3 {
        font-size: 16px;
    }

}

@media (max-width:900px) {
    .leftAdmin h1 {
        font-size: 30px;
    }

    .leftAdmin h3 {
        font-size: 14px;
    }

    .socialMedia {
        gap: 10px;
    }

    .socialBox i {
        font-size: 25px;
    }

}

@media (max-width:700px) {
    .websitesi ul {
        gap: 5px;
    }

    .websitesi>ul>li a {
        padding: 10px 18px;
    }

    .socialBox {
        background-color: white;
    }

    .adminContainer {
        position: relative;
    }

    .adminContainer img {
        position: relative;
        width: 95%;
        height: auto;
    }

    .adminContainer .leftAdmin {
        position: absolute;
        bottom: 20%;
        left: 35%;
        z-index: 99;
        color: white;
    }

}

@media (max-width:550px) {

    .websitesi {
        display: none;
    }

    .mobile {
        display: block;
        height: 80px;
        width: 100%;
        align-content: center;
    }

    .mobile ul {
        display: flex;
        justify-content: space-around;
        align-items: center;
        list-style-type: none;
    }

    .mobile ul li a {
        text-decoration: none;
        color: black;
    }

    .mobile ul li a i {
        font-size: 30px;
    }

    #anasayfa {
        align-content: center;
    }

    .adminContainer .leftAdmin {
        bottom: 0;
    }

    .socialMedia {
        margin-top: 10px;
    }
}

@media (max-width:400px) {

    .adminContainer .leftAdmin {
        width: 100%;
        left: 0;
        bottom: 15px;

    }

    .adminContainer .leftAdmin h1 {
        margin-bottom: 30px;
    }

    .adminContainer .leftAdmin h1::after {
        content: 'Ben Ersin Kara';
        position: absolute;
        top: 40px;
        left: 50%;
        width: 50%;
        height: 20px;
        font-size: 15px;
        transform: translate(-40%);
    }

    .adminContainer .leftAdmin h3 {
        display: none;
    }

    .socialMedia {
        margin-top: 0;
        gap: 8px;
    }


    .alert-message {
        width: 100%;
        top: 40px;
        z-index: 99;
    }


}