.siirler {
    color: white;
}

.sair {
    text-decoration: none;
    color: #5ea8ff;
}

.sair:hover {
    color: #99ccff;
}

.liste {
    text-align: center;
    margin-top: 200px;
}

.li {
    display: inline;
    margin-left: 50px;
}

.baslik {
    color: red;
    text-align: center;
}

.resim {
    width: 25%;
    margin-left: 100px;
}

.yazi,
.siir {
    margin-left: 100px;
}

.yaziRenk {
    color: brown;
}

.siir {
    margin-top: 100px;
}

label,
legend {
    color: white;
}

@font-face {
    font-family: "kaushan";
    src: url(fontlar/Kaushan_Script/);
}

@font-face {
    font-family: "libre";
    src: url(fontlar/Libre_Baskerville/);
}

@font-face {
    font-family: "playfair";
    src: url(fontlar/Playfair_Display/);
}

.icerikler a {
    text-decoration: none;
    background-color: darkred;
    color: white;
    padding: 10px 15px;
    border: 1px solid #ff00004f;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.icerikler a:not(.icerikler a:last-child) {
    margin-right: 50px;
}

.icerikler a:hover {
    box-shadow: 3px 2px 0px rgba(255, 0, 0, 0.5);
    background-color: #b22222;
    transform: scale(1.05);
}

.icerikler {
    margin: auto;
    text-align: center;
    margin-top: 50px;
}

.icerik {
    background-color: #222;
    color: white;
}

.icerikler h2 {
    border-bottom: 2px solid white;
    padding-bottom: 10px;
    margin-bottom: 100px;
}

.kutu {
    width: 80%;
    margin: auto;
    margin-top: 100px;
    margin-bottom: 100px;
    column-count: 3;
    column-rule: 1px solid white;
    column-gap: 20px;
    padding: 10px;
    border: 1px solid white;
    color: white;
}

.icerikResim {
    width: 100%;
}

.icerikBaslik {
    font-family: "libre";
    color: red;
    border-bottom: 1px solid white;
}

.ozet {
    font-style: italic;
}

.kutu li:not(.metin) {
    font-weight: bold;
    color: coral;
    border-bottom: 1px solid coral;
}

.giris::first-letter {
    font-size: 25px;
    font-weight: bold;
}

.giris {
    text-indent: 30px;
}

.galeriBody {
    background-color: black;
}

.galeri {
    width: 100%;
    display: flex;
    gap: 5px;
}

.galeri div {
    flex: 1;
    background-color: brown;
    padding: 10px;
}

.galeri img {
    width: 100%;
    border: 1px solid beige;
    box-sizing: border-box;
    margin-bottom: 5px;
    transition: transform 0.3s ease;
}

.galeri img:hover {
    transform: scale(1.05);
}

.zar {
    background-color: blue;
    padding: 10px 20px;
    border-radius: 3px;
    text-decoration: none;
    position: fixed;
    top: 50px;
    left: 50px;
    color: white;
}

.zar1 {
    width: 10vw;
    margin-top: 100px;
}

.carpim {
    border-collapse: collapse;
    margin-top: 20px;
    margin-bottom: 20px;
}

.carpim th,
td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: center;
}

.topKutu {
    width: 50%;
    display: flex;
    justify-content: space-around;
}

.topKutu2 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    width: 80%;
    max-width: 400px;
    margin-top: 50px;
}

.top {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: red;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 2rem;
}

.topButon {
    background-color: blue;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    color: white;
    display: inline-block;
    margin-top: 100px;
}

.eslesen-top {
    background-color: green;
}

.slider {
    width: 50vw;
    height: 50vh;
    border: 3px solid white;
    margin: auto auto;
    position: relative;
    overflow: hidden;
}

.slider img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 100%;
}

.slider img:nth-child(1) {
    left: 0;
}

.slider span {
    position: absolute;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: black;
    font-size: 5rem;
    transition: all 0.3s ease;
}

.slider span:hover {
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.geri {
    left: 20px;
}

.ileri {
    right: 20px;
}

@keyframes sahne {
    from {
        left: 100%;
    }

    to {
        left: 0;
    }
}

@keyframes sahneDisi {
    from {
        left: 0;
    }

    to {
        left: -100%;
    }
}

@keyframes sahneGeri {
    from {
        left: -100%;
    }

    to {
        left: 0;
    }
}

@keyframes sahneDisiGeri {
    from {
        left: 0;
    }

    to {
        left: 100%;
    }
}

body:not(.icerik) {
    background-color: #222;
    color: #eee;
    padding: 15px;
    box-sizing: border-box;
    line-height: 1.6;
}

input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
    background-color: #333;
    color: #eee;
    border: 1px solid #777;
    padding: 8px;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}

input[type="submit"] {
    background-color: darkred;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    width: auto;
}

input[type="submit"]:hover {
    background-color: #b22222;
}

.zar {
    background-color: darkred;
}

.topButon {
    background-color: darkred;
}
.topButon:hover {
    background-color: #b22222;
}

.carpim th,
.carpim td {
    border: 1px solid #555;
}

body > img:not(.resim):not(.icerikResim):not(.zar1) {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 15px auto;
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .resim {
        width: 80%;
        margin: 15px auto;
        display: block;
        float: none;
    }

    .yazi,
    .siir {
        margin-left: 15px;
        margin-right: 15px;
    }

    .liste .li {
        display: block;
        margin: 10px 0;
    }

    .kutu {
        width: 95%;
        column-count: 1;
        margin: 20px auto;
    }

    .icerikler a {
        display: block;
        margin: 15px 10px;
    }

    .icerikler a:not(.icerikler a:last-child) {
        margin-right: 10px;
    }

    .icerikler h2 {
        margin-bottom: 30px;
        font-size: 1.8rem;
    }

    .galeri {
        flex-direction: column;
    }

    .anasayfa fieldset {
        padding: 10px;
    }
    .anasayfa table,
    .anasayfa tr,
    .anasayfa td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    .anasayfa td {
        margin-bottom: 10px;
    }

    .anasayfa label {
        display: block;
        margin-bottom: 5px;
    }

    .anasayfa input[type="radio"] {
        width: auto;
    }

    .carpim {
        display: block;
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
    }

    .zar1 {
        width: 40vw;
        height: auto;
    }

    .slider {
        width: 90vw;
        height: 40vh;
    }

    .slider span {
        font-size: 3rem;
    }

    .topKutu {
        width: 90%;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    .topKutu2 {
        width: 90%;
        grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
        max-width: 90%;
    }

    .top {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .topButon {
        margin-top: 30px;
    }
}
