﻿/* Modal Style */
.modal {
    display: none; /* Modal başlangıçta gizli */
    position: fixed; /* Sabit pozisyon */
    z-index: 1; /* Üstte görünecek */
    left: 0;
    top: 0;
    width: 100%; /* Tüm ekranı kapla */
    height: 100%;
    overflow: auto; /* Taşan içeriği kaydır */
    background-color: rgba(0, 0, 0, 0.9); /* Koyu arka plan */
}

.modal-content {
    margin: auto;
    display: block;
    width: 100%;
    max-width: 700px; /* Maksimum genişlik */
}

.close {
    position: absolute;
    top: 10px;
    right: 25px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    transition: 0.3s;
}

    .close:hover,
    .close:focus {
        color: #bbb;
        text-decoration: none;
        cursor: pointer;
    }


.miniabout-img {
    display: none;
}

@media screen and (max-width: 768px) {
    .miniabout-img {
        float: right;
        margin-top: -100px;
        display: flex; /* Mobil görünümde göster */
    }
}


