:root{
    --lightPurple: #5645F3;
    --lightGray: #C4C4C4;
    --paleGray: #F2F2F2;
    --deepBlue: #0F0097;
    --shallowBlue: #1400cc;
    --tablet: 481px;
    --monitor: 1024px;
    --darkGray: #34324A;
}

.classicLink{
    padding: 0.5em 1em;
    border-radius: 0.5rem;
    font-weight: bold;
    text-decoration: none;
    font-size: 0.875em;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.classicLinkWrapper{
    border: 0.5rem;
    font-weight: bold;
    text-decoration: none;
    font-size: 0.875em;
    text-align: center;
}

.flexBetween{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flexAround{
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.flexCenter{
    display: flex;
    align-items: center;
    justify-content: center;
}

.flexCol{
    flex-direction: column;
}

.linkBlue{
    background-color: var(--deepBlue);
    color: white;
}

.linkBlue:hover{
    background-color: var(--shallowBlue);
}

/* modals /////////////////////////////////////////////////////////////*/
.modal{
    position: fixed; /* Stay in place */
    z-index: 999; /* 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 */
    display: none;
}

/* Modal Content/Box */
.modalContent{
    background-color: #fefefe;
    border-radius:0.5em;

    margin: 5em auto; /* 15% from the top and centered*/
    /* padding: 2em; */
    border: 1px solid #888;
    /* width: 80%; /* Could be more or less, depending on screen size  */
    max-width:60%;
}

.modalContent > div {
    margin-bottom:1em;
}

.mCTitle{
    font-size:1.75em;
    font-weight: bold;

    padding:0.75em 3rem;
}

.mCDiv{
    padding:0 3rem;
    font-size: 1.25em;
}

.mCDiv .subtext{
    font-size: 0.75em;
    margin-bottom: 1.25em;
}

.mCTitle > p {
    font-size: 0.7em;
    font-weight: normal;
    margin: 0;
    margin-top: 1em;
}
