.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    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 {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.buttonm {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #007bff;
    border-radius: 5px;
    text-decoration: none;
}
/* footer the last one */
.site-footer {
    background: #008cba;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

.site-footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #005f73
}

.site-footer a {
    color: rgb(228, 160, 14);
    text-decoration: none;
    margin: 0 5px;
}

.site-footer a:hover {
    text-decoration: underline;
}

.site-footer .right-section {
    margin-top: 10px;
    
}

.site-footer .right-section a {
    display: inline-block;
    margin: 0 5px;
}

.site-footer .right-section a:hover {
    text-decoration: underline;
}

.site-footer .copyright {
    margin-top: 10px;
    font-size: 12px;
    color:rgb(233, 130, 130);
}

/* Media Queries */
@media (min-width: 576px) {
    .site-footer .container {
        flex-direction: row;
        justify-content: space-between;
    }

    .site-footer .right-section {
        margin-top: 0;
    }
}
