﻿@import url('https://fonts.googleapis.com/css2?family=Roboto Mono:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


:root {
    --padding: 40px;
    --break: 15px;
    --subbreak: 10px;
}

/* --- basic CSS positioning reset --- */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* --- ignore this class it was for debugging --- */
.d {
    border: 1px solid red;
}


/* --- the actual Stuff --- */
body {
    color: #d6d6d6;
    text-align: center;
    background: black url('/img/8224/lydia.png') no-repeat fixed;
    background-size: cover;
    font-family: "Roboto Mono", sans-serif;
    padding: var(--padding);
    padding-top: 10px;
    font-size: 12px;
    margin: auto;
}

ul, ol {
    list-style-position: inside;
    width: 25%;
    text-align: left;
	margin-bottom: 10px
}

li + li {
    margin-top: 10px;
}

li::marker {
    color: white;
}

dl {
    font-size: smaller;
    font-style: italic;
    max-width: 25%;
    margin-bottom: 20px;
    margin-top: 5px!important;
}

hr {
    width: 60%;
    border: none;
    border-bottom: 1px solid #ffffff4f;
}

h1, h2, h3 {
    margin-top: var(--break);
    text-transform: uppercase;
    color: white;
}

    h1:first-child, h2:first-child, h3:first-child {
        margin-top: 0;
    }

a {
    color: #df33ff;
}

    a:hover {
        color: #5233ff;
    }

    a img {
        border: 0;
    }
	
img {
        max-width: 100%;
        height: auto;
		margin-top: 10px;
    }

.flex-col-centre {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    width: 100%;
    height: fit-content;
}

.page-content {
    padding: var(--padding);
	padding-top: 5px;
}

.page-content p {
    max-width: 30%;
}

    .page-content h1 + *, .page-content h2 + *, .page-content h3 + * {
        margin-top: var(--subbreak);
        margin-bottom: var(--subbreak);
    }

    .page-content p + p {
        margin-bottom: var(--subbreak);
    }

    .page-content > img {
        max-width: 80%;
    }

.img-panel {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 80%;
    margin-top: var(--break);
}

    .img-panel img {
        flex-shrink: 1;
        min-width: 10px;
        max-width: 150px;
        background-color: #786161;
        border: 1px solid white;
        box-shadow: inset #000000bf 0 0 3px;
    }

        .img-panel img:hover {
            cursor: pointer;
        }

.img-panel2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 80%;
    margin-top: var(--break);
}

header img {
    max-width: 100%;
}

footer {
    margin-top: 40px;
    width: 30%;
    font-size: smaller;
}

footer > p + p {
    margin-top: var(--subbreak);
}

#Updates {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

#Updates a {
    width: 200px;
    height: 82px;
    background-color: transparent;
    border: none;
    transition: 0.2s;
}

    #Updates #update-prev {
        background: transparent url("/img/previous.png") no-repeat;
        background-size: cover;
    }

    #Updates #update-next {
        background: transparent url("/img/next.png") no-repeat;
        background-size: cover;
    }

#Updates a:hover {
    cursor: pointer;
    filter: drop-shadow(0 0 5px #ffffff6b);
    transition: 0.2s;
}

@media only screen and (max-width: 900px) {
    .page-content p {
        max-width: 65%;
    }

    @media only screen and (max-width: 600px) {
        body {
        }

        ul, ol {
            width: 70%;
        }

        dl {
            max-width: 70%;
        }

        .page-content p {
            max-width: 85%;
        }

        footer {
            width: 90%;
        }

        #Updates a {
            width: calc(200px / 1.5);
            height: calc(82px / 1.5);
        }
    }

}