/* Buttons */

.buttonWithPress {
    background-color: grey;
    opacity: 0.5;
    color: whitesmoke;
    text-align: center;
    cursor: pointer;
    padding: 10px 2px;
    width: 80%;
    display: block;
    margin: 0 auto;
}


/* Contents */

body {
   background-color: whitesmoke;
    /*width: 100vw;*/
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
}

h1,
h2,
h3,
h4 {
    word-wrap: break-word;
    text-align: center;
}

p {
    word-wrap: break-word;
    text-indent: 2em;
    text-align: justify;
}

.notice {
    text-align: left;
    position: absolute;
    z-index: 2;
    top: 15px;
    left: 15px;
    padding: 7.5px;
    background-color: yellow;
    border: 2px solid black;
    color: black;
    font-size: smaller;
}

.theImageCSS {
    display: block;
    background-color: none;
    margin: 0;
    position: absolute;
    width: 90vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.theImageBtnCSS {
    display: none;
    background-color: none;
    margin: 0;
    position: absolute;
    width: 90vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#buttonImage {
    z-index: 1;
}

area:hover {
    cursor: pointer;
}

.theModal {
    z-index: 2;
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.theModalContent {
    position: fixed;
    background-color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    max-height: 80vh;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0;
    opacity: 0.75;
    filter: alpha(opacity=75);
    -moz-opacity: 0.75;
}

.theModalHeader {
    padding: 2px 16px;
    background-color: grey;
    color: white;
    height: 30px;
}

#theContentContainer img {
    display: block;
    margin: 0 auto;
    max-width: 80%;
}

.layer1Button {
    position: fixed;
    background-color: white;
    border: none;
    color: black;
    top: 0;
    left: 0;
    width: 22.5vw;
    height: 35px;
    font-size: x-small;
    font-weight: bold;
    cursor: pointer;
    outline: none;
}

.layer2Button {
    position: fixed;
    background-color: dimgrey;
    border: 1px solid darkgrey;
    color: black;
    top: 0;
    left: 22.5vw;
    width: 22.5vw;
    height: 34px;
    font-size: x-small;
    font-weight: bold;
    cursor: pointer;
    outline: none;
}

.layer3Button {
    position: fixed;
    background-color: dimgrey;
    border: 1px solid darkgrey;
    color: black;
    top: 0;
    left: 45vw;
    width: 22.5vw;
    height: 34px;
    font-size: x-small;
    font-weight: bold;
    cursor: pointer;
    outline: none;
}

.closeModalButton {
    color: white;
    float: right;
    font-size: 25px;
    font-weight: bold;
    cursor: pointer;
}

.theContentContainer {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5px;
    margin-bottom: 5px;
    width: 75vw;    
    max-height: 65vh;
    overflow: auto;
}

.theContentContainer video{
  width: 100% !important;
  height: auto !important;
}

.theContentContainer iframe{
  width: 100% !important;
  height: auto !important;
}