/*
image-rendering: pixelated;
*/

@font-face {
    font-family: 'W95font';
    src: url('/static/fonts/w95font.woff2') format('woff2'),
         url('/static/fonts/w95font.woff2') format('woff');
    font-weight: normal;
}

@font-face {
    font-family: 'W95font';
    src: url('/static/fonts/w95font-bold.woff2') format('woff2'),
         url('/static/fonts/w95font-bold.woff2') format('woff');
    font-weight: bold;

}

/* Construction Sign Image. Remove Later */
img {
    height: 100px;
    display: block;
    margin: 0 auto;
}

/* Scroll bar */
::-webkit-scrollbar {
    background: #e0e0e0;
}

::-webkit-scrollbar-thumb {
    border: outset 3px white;
    box-shadow: 1px 1px 1px #000;
    background: #d0d0d0;
    border-radius: 2px;
}

::-webkit-scrollbar-button {
    background: #d0d0d0;
    border: outset 3px white;
    box-shadow: 1px 1px 1px #000;
}

/* Volume Slider */
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    background: #e0e0e0;
    border: outset 3px white;
}

input[type="range"]::-webkit-slider-thumb, input[type="range"]::-moz-range-thumb {
    -webkit-appearance: none;
    background: #d0d0d0;
    border: outset 3px white;
    box-shadow: 1px 1px 1px #000;
}

#carter {
    position: absolute;
    z-index: 2;
    height: 500px;
    display: none;
}

#smerBush {
    height: 150px;
    margin-bottom: 5px;
}

#update-win, #guestbook {
    overflow-y: scroll;
    height: 25vh;
}

html {
    cursor: url('/static/cursor/arrow.cur'), auto;
}

body {
    background-color: #deaefc;
    font-family: "W95font";
}

button, a, input, select {
    cursor: url('/static/cursor/Cursor_15.cur'), auto;
    font-family: "W95font";
}

marquee {
    border-bottom: outset 3px white;
    box-shadow: 1px 1px 1px #000;
    border-radius: 2px;
}

ul, li {
    list-style-type: none;
    margin-left: 5px;
    padding-left: 0px;
}

.window-border {
    border: outset 3px white;
    box-shadow: 1px 1px 1px #000;
    border-radius: 2px;
}

.wrapper {
    display: flex;
    margin: 0 auto;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.window {
    display: flex;
    flex-direction: column;
}

.stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 22vw;
}

.nav-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .5em;
    padding-top: .5em;
    padding-bottom: .5em;
}

.nav-content > button, .nav {
    background: #e0e0e0;
    width: 75%;
    font-size:20px;
}

.nav-content > button:active, .nav:active {
    border: inset 3px #e0e0e0;
    box-shadow: 1px 1px 1px white;
    background: #c7c7c7;
}

.content, .nav-content {
    border-top: none;
    background: #d7b9ed;
}

.main {
    width: 45vw;
}

.main-content {
    border-top: none;
    background: #d7b9ed;
}

p {
    padding-left: 5px;
}

.window-header {
    color: #fff;
    background: #94BBE9;
    background: linear-gradient(90deg, rgba(148, 187, 233, 1) 13%, rgba(203, 131, 230, 1) 55%, rgba(238, 174, 202, 1) 100%);
    padding: .5em;
    display: flex;
    justify-content: space-between;
}

.window-header > p {
    margin: 0px;
    padding: 0px;
    font-size:20px;
}

.fake-controls {
    display: flex;
    justify-content: flex-end;
    gap: .5rem;
}

.fake-controls > button {
    width: 1.5rem;
    height: 1.5rem;
    padding: 0;
    text-align: center;
}

button {
    margin: auto;
    background: #e0e0e0;
}

button:active {
    border: inset 3px #e0e0e0;
    box-shadow: 1px 1px 1px white;
    margin: auto;
    background: #c7c7c7;
}

button:hover {
    background: #d0d0d0;
}

.content > button, form > button {
    margin-left: 5px;
}

@media (max-width: 900px) {
    .wrapper {
        flex-direction: column;     
        align-items: center;        
        gap: 1rem;                   
    }

    .stack {
        width: 100vw;
        align-items: center;
    }

    .main {
        width: 100vw;               
    }

    .nav-content > button {
        width: 100%;  
    }

    img {
        display: block;
        margin: 1rem auto;  
        height: 80px;
    }
}