/* Custom Fonts
tou6  - Touhou 6 Font */
@font-face {
    font-family: 'tou6';
    src: url('fonts/DFPPOPCorn-W12/DFPPOPCorn-W12.eot');
    src: local('DFPPOPCornW12'),
        url('fonts/DFPPOPCorn-W12/DFPPOPCorn-W12.woff') format('woff'),
         url('fonts/DFPPOPCorn-W12/DFPPOPCorn-W12.woff2') format('woff2')
        url('fonts/DFPPOPCorn-W12/DFPPOPCorn-W12.ttf') format('ttf'),
        url('fonts/DFPPOPCorn-W12/DFPPOPCorn-W12.svg') format('svg');
}

.LeftPanel {
    border: 5px greenyellow inset;
    border-color: greenyellow;
    background-color: paleturquoise;
    height: 95%;
    width: 18%;
    float: left;
    position: fixed;
    left: 2%;
    overflow-y:scroll;
    scrollbar-width: thin;
}

.MiddlePanel {
    border: 5px greenyellow inset;
    border-color: greenyellow;
    background-color: paleturquoise;
    height: 95%;
    width: 76%;
    float: right;
    position: fixed;
    left: 22%;
    overflow-y:scroll;
    scrollbar-width: thin;
}

.BodyContainer {
    position: fixed;
    max-width: 1250px;
    min-width: 100px;
}

body {
    background-color: aliceblue;
    font-family: 'tou6';
    font-size: 86%;
    text-align: center;
}

h1 {
    font-size: 350%;
    color: fuchsia;
    text-align: center;
}

h2 {
    font-size: 100%;
    color: fuchsia;
    margin-bottom: 0px;
}

li {
    list-style-position: inside;
    font-style: italic;
    text-align: center;
}

q {
    font-style: italic;
}

p {
    margin-top: 2px;
}

img {
  max-width: 50%;
  max-height: 50%;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
}