/* General style */
::selection {
    background-color: #696969;
    color: #cacaca;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #21807C;
}

::-webkit-scrollbar-thumb {
    background-color: #30AD90;
    border: 3px solid #21807C;
}

body {
    background: url('/media/texture0.png'), url('/media/texture3.png') #30AD90;
    font-family: monospace;
    place-items: center;
    color: #696969;
    display: grid;
    line-height: 1.6;
    margin: 1% 5%;
}

hr {
    border: 0;
    height: 1px;
    background: #9b9b9b;
    margin: 20px 0;
}

ul {
    list-style: none;
    padding-left: 1em;
}

li::before {
    content: ">";
    margin-right: 0.5em;
}


/* Window style */
.windows-frame {
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    border: 2px outset #9b9b9b;
    background: #696969;
    margin-bottom: 20px;
    padding: 4px;
    margin: 10px;
}

.windows-title-bar {
    background: linear-gradient(to right, #00008B, #1E90FF);
    padding: 5px 10px;
    font-weight: bold;
    color: white;
    height: 22px;
}

.windows-background {
    background: url('/media/texture4.png'), #cacaca;
    padding: 10px;
}

.windows-button {
    background: none;
    color: white;
    float: right;
    border: none;
    width: 24px;
    height: 24px;
    font-size: 16px;
    margin-left: 4px;
    cursor: pointer;
}

.windows-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Grid layout */

.windows-grid {
    grid-template-areas:
        'header main'
        'header main'
        'footer main ';
    display: grid;
}

header {
    grid-area: header;
}

main {
    grid-area: main;
}

footer {
    grid-area: footer;
}

@media (max-width: 1000px) {
    .windows-button {
        display: none;
    }
}

@media (min-width: 1000px) {
    body {
        margin: 1% 12%;
    }
}

img {
    height: 5em;
}