:root {
    --window-header-height: 40px;
}

::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-track {
    background: rgba(0,0,0,0);
}

::-webkit-scrollbar-thumb {
    background: rgb(255,255,255);
    border: 4px solid rgb(0,0,0);
}

::-webkit-scrollbar-thumb:hover {
    background: rgb(220,220,220);
}

@font-face {
    font-family: 'Ancient Modern Tales';
    src: url('files/fonts/AncientModernTales.eot'); /*IE9*/
    src: url('files/fonts/AncientModernTales.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('files/fonts/AncientModernTales.woff') format('woff'), /* Modern Browsers */
         url('files/fonts/AncientModernTales.ttf') format('truetype'), /* Safari, Android, iOS */
}

body {
    font-family: 'Ancient Modern Tales', 'Times New Roman', Times, serif;
    background: black;
    color: white;
    font-size: 20px;
}

h1 {
    font-size: 100px;
    margin-top: 25px;
    margin-bottom: 25px;
}

h2 {
    margin-top: 10px;
    margin-bottom: 10px;
}

h4 {
    margin: 0;
}

.window {
    width: 800px;
    height: 600px;
    border: 1px solid white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.window-right {
    float: right;
    margin-left: 20px;
    margin-top: -300px;
}

@media screen and (max-width: 1640px) {
    .window-right {
        margin-top: 0;
    }
}

.window-header {
    border-bottom: 1px solid white;
    height: var(--window-header-height);
    display: flex;
}

.window-title {
    text-align: center;
    border: 1px solid white;
    width: 60%;
    padding: 3px 0;
    margin: auto;
}

.window-content {
    padding: 20px;
    height: calc(100% - var(--window-header-height) - 60px);
    overflow-x: hidden;
}

.image {
    display: block;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
    border: 1px solid white;
}

.blue {
    color: lightblue;
}

.red {
    color: lightcoral
}

.green {
    color: lightgreen;
}

.yellow {
    color: rgb(255, 255, 132);
}

.footer {
    position: fixed;
    bottom: 0;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100%;
    padding: 10px;
    background-color: rgba(0,0,0,0.5);
    border: 1px solid white;
}

.footerimage {
    width: 20px;
    height: 20px;
}

a {
    color: lightblue;
}

a:hover {
    text-decoration: wavy underline;
}