/*///////////////////////////////////////////////// Elements */

body {
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    font-family: "Lexend", monospace;
    font-size: 18px;
    color: var(--text-color);

    --background-color: #130023;
    --dark-background-color: #0c0016;
    --highlight-color: #644ceb;
    --line-color: #2f1e3d;

    --text-color: #faf4ff;
    --paragraph-color: #cbbfda;
    --container-text-color: #83788b;
    --visited-color: #6539b8;
}

a {
    padding-left: 2px;
    padding-right: 2px;
    color: var(--highlight-color);
    background-color: transparent;
    transition: 0.2s;
}

a:hover {
    color: var(--text-color);
    background-color: var(--highlight-color);
}

button {
    border: none;
    text-decoration: none;
    color: var(--highlight-color);
    background-color: transparent;
    /*padding-left: 2px;
    padding-right: 2px;
    min-width: 128px;
    width: min-content;
    transition: 0.2s;
    text-align: left;*/
    font-family: "DM Mono", monospace;
    font-size: 18px;
    user-select: none;
    cursor: pointer;
}

/*button:hover {
    color: var(--text-color);
    background-color: var(--highlight-color);
}*/

h2, h3, h4, h5, h6 {
    font-weight: 400;
    font-size: 20px;
    text-align: center;
    margin: 4px 0;
}

h3 {
    font-size: 18px;
}

p {
    color: var(--paragraph-color);
    margin: 4px 0;
    font-size: 14px;
}

/*///////////////////////////////////////////////// no focus */

button:focus, a:focus {
    outline: none;
}

/*///////////////////////////////////////////////// utility */

.line {
    margin: 8px 4px;
    height: 1px;
    background-color: var(--line-color);
}

.margin {
    height: 18px;
}

.paragraph-text {
    color: var(--paragraph-color);
}

.small-text {
    font-size: 12px;
}

.centered-text {
    text-align: center;
}

/*///////////////////////////////////////////////// buttons */

.img-btn {
    display: block;
    position: relative;
    min-width: min-content;
    width: min-content;
    padding: 0;
}

.img-btn:hover {
    background-color: transparent;
}

.img-btn img {
    position: static;
}

.img-btn img.img-selectedver {
    position: absolute;
    opacity: 0;
    transition: 0.1s opacity;
}

.img-btn:hover img.img-selectedver {
    opacity: 1;
}

/*///////////////////////////////////////////////// Universal */

.titlebar {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    justify-content: space-between;
}

.pond {
    width: 776px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.pond img {
    user-select: none;
    position: absolute;
    top: 0;
    left: 0;
}

.pond img.pond-bg {
    position: static;
    opacity: 1;
    transition: none;
}

.pond-button {
    cursor: pointer;
    position: absolute;
    opacity: 0;
}

.pond img {
    opacity: 0;
    transition: 0.1s opacity;
}

.title {
    font-size: 64px;
    margin-bottom: 8px;
    user-select: none;
}

.page {
    margin-left: auto;
    margin-right: auto;
    margin-top: 32px;
    max-width: 800px;
    padding-left: 4px;
    padding-right: 4px;
}

.page-split {
    display: flex;
    gap: 8px;
}

.page-split > * {
    flex: 1 1 0;
}

.footer-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*///////////////////////////////////////////////// Homepage */

.pb-art {
    top: 230px;
    left: 430px;
    width: 55px;
    height: 34px;
}

.pb-music {
    top: 130px;
    left: 315px;
    width: 90px;
    height: 30px;
}

.pb-updates {
    top: 305px;
    left: 575px;
    width: 90px;
    height: 35px;
}

.pb-blog {
    top: 165px;
    left: 635px;
    width: 60px;
    height: 25px;
}

.pb-about {
    top: 135px;
    left: 105px;
    width: 92px;
    height: 35px;
}



/*///////////////////////////////////////////////// blog */

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.blog-list a:visited {
    color: var(--visited-color);
}

.blog-list a:visited:hover {
    color: var(--text-color);
    background-color: var(--visited-color);
}

.blog-entry {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog iframe {
    border: 1px solid var(--line-color);
    background-color: var(--dark-background-color);
}

.blog-header {
    display: flex;
    gap: 2px;
    flex-direction: column;
}

.blog-title {
    font-size: 24px;
}

.blog-date {
    font-size: 12px;
    color: var(--paragraph-color);
}

/*///////////////////////////////////////////////// art */

.drawing-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.drawing {
    width: min-content;
    display: flex;
    flex-direction: column;
    background-color: var(--dark-background-color);
    padding: 4px;
    max-width: 50%;
}

.drawing-description {
    padding: 0 8px;
}

/*///////////////////////////////////////////////// updates */

.update-list {
    display: flex;
    gap: 16px;
    flex-direction: column;
}

.update-titlebar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}