@import url('https://fonts.googleapis.com/css2?family=Karla&display=swap');

.modal {
    position: fixed;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.modal-hidden {
    display: none;
}

.modal-content {
    background-color: #fefefe;
    margin: 85% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    background-color: rgb(39, 92, 61);
}

.modal-content p{
    font-family: 'Karla', sans-serif;
    margin-top: -15px;
    font-size: 24px;
    color: rgb(200, 200, 200);
}

.close {
    color: #aaa;
    font-size: 50px;
    font-weight: bold;
    display: block;
    text-align: right;
    margin: 0;
    margin-top: -30px;
}

.close:hover,
.close:focus {
    color: #686868;
    text-decoration: none;
    cursor: pointer;
}