.article-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style-type: none;
    gap: 2rem;
    font-size: 1rem;
    margin: 3rem .5rem;
}

.article-container li {
    gap: 1rem;
    padding: 1rem 2rem;
    width: 100%;
    max-width: 1080px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: .5rem;
}

.article-container p {
    width: 75%;
}

main > * {
    position: relative;
    z-index: 1;
}

main::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

body {
    background-image: url("../Resimler/bg-image.jpg");
    margin: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.article-container .btn {
    background-color: #8b0000;
    font-weight: 700;
    color: #fff;
    border: none;
    cursor: pointer;
    min-width: 250px;
    padding: 1rem 2rem;
    border-radius: .5rem;
    transition: border .5s ease-in-out, background-color .5s ease-in-out, color .5s ease-in-out;
}

.article-container .btn:hover {
    background-color: #FFD700;
    color: #000;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    overflow-y: auto;    
}

.modal-content {
    background: #000;
    margin: 5% auto;
    padding: 2rem;
    border-radius: .5rem;
    width: 75%;
    max-width: 800px;
    color: #fff;
}

.close {
    float: right;
    font-size: 2rem;
    cursor: pointer;
    color: #8b0000;
    transition: color .5s ease-in-out;
}

.close:hover {
    color: #FFD700;
}