/************** MODAL POPUP ***************/
.article {
    display: block;
    width: 300px;
    height: 60px;
    border-radius: 20px;
    background-color: #da0000;
    color: white;
    font-size: 40px;
    font-family: AsapCondensedBold, serif;
    margin: 0 auto 40px auto;
    text-align: center;
    padding: 20px 0 10px 0;
}
.article:hover {
    background-color: #b00303;
    cursor: pointer;
}
/* ***** THE MODAL POPUP ***** */
/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 8px;
    width: 50%;
    overflow: auto;
}
/* The Close Button */
.close {
    color: #dcdcdc;
    float: right;
    font-size: 28px;
    font-weight: bold;
    margin: 0 5px 0 0;
}
.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
.modalCim {
    /*background-color: #da0000;*/
    background: linear-gradient(90deg, #da0000 100%, #ffffff 100%);
    text-align: left;
    font-family: AsapCondensedBold, serif;
    font-size: 26px;
    color: #ffffff;
    padding: 10px;
    margin: 0;
}
.modal_close_button {
    width: 80px;
    height: 40px;
    margin: 10px auto 0 auto;
    color: white;
    background: #2c598a;
    border-radius: 5px;
    border: none;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}
.modal_close_button:hover {
    background: #5887b9;
}
/* MODAL STYLE END */

@media screen and (max-width:1050px) {
    .modal-content {
        width: 80%;
    }
    .modal {
        left: 0;
    }
}
@media screen and (max-width:600px) {
    .modalCim {
        font-size: 22px;
        padding: 8px;
    }
    .modal-content {
        padding: 10px;
    }
    .modal_close_button {
        margin: 0 auto 60px auto;
    }
}