html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: none;
    color: aliceblue;
}

/* --- NAV --- */

nav{
    width: 100%;
    display: flex;
    justify-content: space-around;
    position: fixed;
    top: 0;
    backdrop-filter: blur(2px);
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

nav a{
    text-decoration: none;
    color: rgba(255, 255, 255);
    font-size: 20px;
    padding: 20px;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}


/* Container */

.container div{
    height: 100vh;
    width: 100vw;
}

/* --- Bir --- */
.bir{   
    background: linear-gradient(#067bbe, rgb(72, 137, 191));
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Orta Div */
.bir .anadiv{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    /* background-color: rgba(255, 0, 0, 0.100); */
    height: 40%;
    width: 30%;
    color: white;
    /* border-radius: 2%;
    box-shadow: 10px black;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); */
}

.anadiv div {
    height: 60px;
    width: 60px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: larger;
    font-weight: bold;
    gap: 20px;
    width: 50%;
    font-size: large;
    cursor: pointer;
}

.anadiv .icon{
    font-size: 26px;
}

.anadiv .youtube{
    background-color: red;
    width: fit-content;
    height: 5%;
    
    padding: 20px;
    transition: all 0.3s ease;
}

.anadiv .instagram{
    background: linear-gradient(to right, #ff512f, #dd2476);
    width: fit-content;
    height: 5%;
    padding: 20px;
    transition: all 0.3s ease;
}

.anadiv .tiktok{
    background-color: black;
    width: fit-content;
    height: 5%;
    padding: 20px;
    transition: all 0.3s ease;
}

.anadiv .kick{
    background: rgb(0, 253, 97);
    color: black;
    width: fit-content;
    height: 5%;
    padding: 20px;
    transition: all 0.3s ease;
}

.youtube:hover, .instagram:hover, .tiktok:hover, .kick:hover {
    transform: scale(1.1);
}

/* --- iki --- */

.iki{
    background: linear-gradient(rgb(72, 137, 191), rgb(17, 91, 161));
    display: flex;
    justify-content: center;
}

.myDiary {
    width: 260px;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 12px;
    box-sizing: border-box;
    text-align: center;
    overflow: hidden;
}

/* Başlık */
.myDiary p {
    margin: 0 0 10px;
    font-weight: 600;
}

/* Görsel alanı */
.myDiary img {
    width: 100%;
    height: 160px;
    object-fit: cover; /* taşanı keser */
    border-radius: 8px;
    display: block;
}

/* Buton */
.myDiary button {
    margin-top: 12px;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 8px;
    background: #007bff;
    color: #fff;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}

.myDiary button:hover {
    background: #0056b3;
}

/* --- uc --- */

.uc{
    background: linear-gradient(rgb(17, 91, 161), #4210a0);
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .anadiv {
        
        font-size: smaller;
    }

    .anadiv div{
        gap: 15px;
    }
}