﻿:root {
    --background: rgba(255, 255, 255, 1.0);
    --camgreen60: rgba(34, 96, 55, 0.6);
    --camgreen85: rgba(34, 96, 55, 0.85);
}


.modal {
    /*display: none;*/
    visibility: hidden; /* Hidden by default */
    opacity: 0;
    position: absolute; /*Stay in place */
    z-index: 1; /* Sit on top */
    /*left: .25vw;
    top: .25vh;*/
    width: 100%;
    height: 30%;
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: var(--camgreen60);
    transition-property: opacity, visibility;
    transition-duration: 500ms;
}

/* Modal Content/Box */
.modal-content {
    position: relative;
    background-color: #ffffff;
    margin: 30px auto;
    padding: 0px;
    border: 1px solid #888;
    height: 600px;
    max-height: 600px;
    width: 65%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.closebtn{
    position: absolute;
    margin-left: 100%;
    top:0px;
    display:flex;
    justify-content: center;
    align-items: center;
    background-color: #99999999;
}

.modal-close {
    color: #aaa;
    position:absolute;
    font-size: 28px;
    text-align:center;
    font-weight: bold;
    z-index:2;
    background-color: transparent;
}

    .modal-close:hover,
    .modal-close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

.modal-closecirc{
    position: absolute;
    z-index:1;
}

/* The Bio Spotlight*/
.bio-spotlight {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1.1fr 1.9fr;
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-areas:
        "spotlightpic biocopyheader"
        "spotlightpic biocopy"
        "spotlightpic biocopy";
    gap: 0px;
    background-color: var(--camgreen85);
    padding: 0px;
}

.bio-spotlight > div {
}

.spotlight-pic{
    grid-area: spotlightpic;
    background-color: black;
}

#spotlight-pic-img {
   position: relative;
   max-width: 100%;
}

.spotlight-pic-footer{
    grid-area: spotlightpicfooter;
    background-color: black;
    color: white;
    font-size: 1.0rem;
    /*border:2px solid blue;*/
}

.bio-copy-header{
    display:flex;
    flex-direction:column;
    padding:10% 5%;
    font-size: 1.5rem;
    grid-area: biocopyheader;
    text-align:start;
    background-color: white;
    /*border:2px solid red;*/
}

.bio-name{
    font-size: 2.2rem;
    font-weight: 900;
}

.bio-title{
    font-size: 1.1rem;
    font-weight: 500;
}

.bio-copy {
    display: flex;
    padding: 10% 5%;
    text-align: start;
    grid-area: biocopy;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.2rem;
    overflow-y: auto;
    /*border: 2px solid yellow;*/
    background-color: white;
}

#funtitle{
    color: white
}
