@font-face {
    font-family: "Pixelated";
    src: url("BitPotion.ttf");
}

:root {
    --ColorBackground: #241919;
    --ColorTextLight: #a08673;
    --BigFontSize: 40px;
    --DefaultFontSize: 30px;
}

.backgroundLayer {
    position: fixed;
    top: 0;
    left: 25vw;
    width: 50vw;
    height: 100vh;
    z-index: -1;
}

foregroundLayer {
    position: fixed;
    top: 0;
    left: 330px;
    width: 100vw;
    height: 100vh;
    background-color: transparent;
    z-index: 2
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    background-color: var(--ColorBackground);
    color: white;
    font-family: Pixelated;
    z-index: 0;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--ColorBackground);
    color: white;
    font-family: Pixelated;
}

.emptySpace {
    display: flex;
    height: 10vh;
}

.smallEmptySpace {
    display: flex;
    height: 2vh;
}

.genericLargeTextCenter {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Pixelated;
    font-size: var(--BigFontSize);
    color: var(--ColorTextLight);
}

.genericLargeText {
    display: flex;
    font-family: Pixelated;
    font-size: var(--BigFontSize);
    color: var(--ColorTextLight);
}

.genericLargeTextDark {
    display: flex;
    font-family: Pixelated;
    font-size: var(--BigFontSize);
    color: var(--ColorBackground);
}

.genericMediumText {
    display: flex;
    font-family: Pixelated;
    font-size: var(--DefaultFontSize);
    color: var(--ColorTextLight);
}

.genericMediumTextDark {
    display: flex;
    font-family: Pixelated;
    font-size: var(--DefaultFontSize);
    color: var(--ColorBackground);
}

.headerField {
    display: flex;
    background-color: var(--ColorTextLight);
    padding: 10px 20px 10px 20px;
    border: 6px solid var(--ColorBackground);
    font-family: Pixelated;
    font-size: var(--BigFontSize);
    color: var(--ColorBackground);
}

.p {
    display: flex;
    justify-content: center;
    font-family: Pixelated;
    font-size: var(--DefaultFontSize);
    color: var(--ColorTextLight);
}

.listColumn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.listRow {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.listElementSmall {
    display: flex;
    justify-content: center;
    background-color: var(--ColorTextLight);
    width: 200px;
    border: 3px solid var(--ColorBackground);
    margin-bottom: 5px;
    font-family: Pixelated;
    font-size: var(--DefaultFontSize);
    color: var(--ColorBackground);
}


.listElement {
    display: flex;
    justify-content: center;
    background-color: var(--ColorTextLight);
    width: 20vw;
    border: 1px solid black;
    margin-bottom: 5px;
    font-family: Pixelated;
    font-size: var(--DefaultFontSize);
    color: var(--ColorBackground);
}


.imageLineup {
    display: flex;
    background-color: var(--ColorBackground);
    padding: 10px 10px 10px 10px;
    border: 6px solid var(--ColorBackground);
}

img.pixel {
    image-rendering: pixelated;
}

img.pixelGallery {
    image-rendering: pixelated;
    padding: 3px 3px 3px 3px;
}

/*Daily drawings*/
.headerLeft {
    display: flex;
    width: 40vw;
    margin-left: 5vw;
    background-color: var(--ColorBackground);
    color: white;
    font-family: Pixelated;
}

.dailyDrawingBack {
    display: flex;
    justify-content: center;
    background-color: var(--ColorTextLight);
    width: 200px;
    border: 3px solid var(--ColorBackground);
    font-family: Pixelated;
    font-size: var(--DefaultFontSize);
    color: var(--ColorBackground);
}

.drawingContainer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    align-content: flex-start;
    width: 80vw;
    margin-left: 10vw;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10;
    justify-content: center;
    align-items: center;
}

    .lightbox.active {
        display: flex;
    }

#lightboxImg {
    image-rendering: pixelated;
    max-width: 90vw;
    max-height: 90vh;
}

/*daily art homepage*/
.containerDailyArt {
    display: flex;
    flex-direction: row;
    width: 80vw;
    margin-left: 10vw;
}

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

