
.learnMoreButton{
    position: absolute;
    top: 10px;
    left: 10px;
    width: 160px;
    height: 50px;
    color: white;
    background: transparent linear-gradient(#ffb500, #da8f29) repeat scroll 0% 0%;
    border-radius: 10px;
    border: none;
    font-size: 18pt;
    font-weight: 600;
    text-shadow: 1px 1px 3px #000;
}

/* --- Pop-Up Box --- */

.popup {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 10000000;
    /* Sit on top */
    padding-top: 15px;
    /* Location of the box */
    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.7);
    /* Black w/ opacity */
}

/* PopUp Content */

.popup-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    color: black;
    text-shadow: none;
    font-size: 16pt;
}

/* Add Animation */

@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }
    to {
        top: 0;
        opacity: 1
    }
}
@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }
    to {
        top: 0;
        opacity: 1
    }
}

/* The Close Button */

.close {
    color: white;
    float: right;
    font-size: 58pt;
    margin-top: -20px;
    font-weight: bold;
    width: 100px;
}
.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
.popup-header {
    margin-top: -47px;
    text-align: center;
    font-size: 28pt;
    line-height: 1.6;
    background-color: deepskyblue;
    color: white;
    text-shadow: 1px 1px 2px #000;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 100px;
}

.popup-header h2{
    padding-top: 4px;
}

.popup-body {
    margin-top: 10px;
    padding: 2px 16px;
    min-height: 350px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.popUpInfo{
    text-align: left;
}

.pictureSlot{
    margin-top: 40%;
}

.infoButtons button{
    background-color: deepskyblue;
    color: white;
    font-size: 16px;
    margin-right: 15px;
}
