.modalBtn {
    background: var(--primaryColor);
    color: white;
    border: 2px solid var(--primaryColor);
    border-radius: 2em;
    padding: 0.5em 1em;
    font-size: var(--step--1);
    margin-block: 2em;
    font-family: 'AUSansLight';
    transition: .1s ease all;
}

.modalBtn:hover { 
    background-color: white;
    color: var(--auGreen);
    cursor: pointer;
    transition: .1s ease all;
}

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 2;
    /* 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/Box */
.modal-content {
    background-color: #fefefe;
    margin: 5rem auto;
    /* 15% from the top and centered */
    position: relative;
    border: 1px solid #888;
    width: 90%;
    max-width: 850px;
}

.modal-header {
    background-color: var(--primaryColor);
    color: #fefefe;
    padding: 1em;
    padding-right: 2em;
}

.modal-info {
    max-height: 60vh;
    overflow-y: scroll;
    padding: 1em;
}

/* The Close Button */
.close {
    color: rgb(249, 249, 249);
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: .5em;
    top: 0.25em;
    cursor: pointer;
}