/* general style overrides */
* {
    font-family: "Times New Roman", serif, monospace;
    color: white;
    font-size: 0.99em;
}

:root {
    line-height: 1.4;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    min-height: 100dvh;
    word-break: break-word;
}

/* background */
#background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* page content */
main {
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: normal;
}

.content-box {
    width: 100%;
    background-color: #0000004d;
    box-sizing: border-box;
    padding: 8px;
}

/* header box styles */
header.content-box,
header.content-box > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#studio-title > img { /* "Studio QS-45" */
    width: 50%;
}

.header-divider { /* horizontal divider */
    width: 100%;
    height: auto;
    padding: 0.5em 0;
    padding-bottom: 0.35em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-divider > div {
    height: 1px;
    width: 90%;
    background: #fff;
    background: -webkit-linear-gradient(left, rgba(90, 90, 90, 0.5) 0%, rgb(255, 255, 255) 50%, rgba(90, 90, 90, 0.5) 100%);
}

.header-divider > div::before {
    position: relative;
    float: left;
    background: linear-gradient(to right, rgba(100, 100, 100, 0), rgba(100, 100, 100, 0.5) 50%);
    margin-top: 2px;
    width: 50%;
    height: .5px;
    content: "";
}

.header-divider > div::after {
    position: relative;
    float: right;
    background: linear-gradient(to left, rgba(100, 100, 100, 0), rgba(100, 100, 100, 0.5) 50%);
    margin-top: 2px;
    width: 50%;
    height: .5px;
    content: "";
}

header.content-box > div.project-title { /* "DESPERA" "Animation Project" */
    width: 100%;
    text-align: center;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 0px 0px;
    grid-template-areas: "despera-logo animation-project";
}

.despera-logo {
    grid-area: despera-logo;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.animation-project {
    grid-area: animation-project;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

header.content-box img {
    width: 50%;
    vertical-align: middle;
}

header.content-box .animation-project > img {
    width: 55%;
    padding-left: 5%;
}

/* main content styles */
article.content-box {
    padding: 20px;
    margin-top: 8px;
}

article.content-box h2 {
    font-size: 1em;
}

.no-bullet-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* text-highlight color */
::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/* MOBILE-DEVICE STYLE OVERRIDES */
@media all and (max-width: 130vh) {
    main {
        align-items: center;
        width: unset;
        padding-left: 0;
    }

    .content-box {
        width: 85vw;
        /* max-width: 720px; */
    }
}
