.trigger-link {
    text-decoration: none;
    color: #58a6ff;
    cursor: pointer;
}
.trigger-link:hover {
    color: #82c7ff;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.75);
}

.modal:target {
    display: block;
}

.modal-content {
    background-color: #1e1e1e;
    margin: 5% auto;
    padding: 25px;
    border: 1px solid #333;
    border-radius: 10px;
    width: 80%;
    color: #e5e5e5;
    line-height: 1.6;
}

.modal-content h2 {
    color: #58a6ff;
    text-align: left;
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
}

.close-btn:hover,
.close-btn:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}
