@import url('https://fonts.cdnfonts.com/css/jmh-beda');

:root {
    --bg: black;            
    --white: #E1EEF6;
    --black: black;
    --primary: #FF2A9F;
}

html {
    background: var(--bg);
    color: var(--black);
    background-size: 100vw 100vh;

    scrollbar-color: var(--primary) var(--bg);
}

body {
    margin: 10px auto 10px auto;
    width: min(900px, 100%);

    font-family: monospace, sans-serif;
    color: var(--white);
}

body * {
    box-sizing: border-box;
}

h1, h2, h3, .title {
    font-family: "JMH Beda", monospace, sans-serif;
    letter-spacing: 1px;
}

header {
    width: 100%;
    max-height: fit-content;
}

header img {
    max-width: 100%;
}

.content {
    margin: 0 5px 0 5px;

    border-left: solid 2px var(--primary);
    border-right: solid 2px var(--primary);
    padding: 0 5px 0 5px;
}

.container {
    display: flex;
    flex-flow: row nowrap;
    gap: 10px;

    width: 100%;
    margin: 6px 0 0 0;
}

.row {
    display: flex;
    flex-flow: row nowrap;
}

.col {
    display: flex;
    flex-flow: column nowrap;

    width: 100%;
}

.left-column, .right-column {
    gap: 10px;
    width: 50%;
}

p {
    margin: 10px;
}

a {
    color: var(--primary);
    text-decoration: dotted underline 2px;
}

a, summary {
    cursor: pointer;
}

a:hover {
    animation: shiftHue 2.5s ease-in-out infinite;
    text-decoration: none;
}

b {
    color: var(--primary);
}

.primary {
    color: var(--primary);
}

em {
    font-style: normal;
    font-weight: bold;
    background: var(--white);
    color: var(--black);
    padding: 0 4px 0 4px;
}

.box {
    border: solid 2px var(--primary);
    width: clamp(100%, 100%, 100%);
}

.title {
    background: var(--primary);
    color: var(--black);
    font-weight: bold;
    margin: 0;
    padding: 2.5px 5px 5px 5px;
    width: 100%;
}

nav {
    margin: 10px;
    gap: 5px;
}

ul {
    list-style: none;
    padding-left: 10px;
    margin: 10px 0 10px 0;
}

li::before {
    content: "\2661";
    margin-right: 10px;
    text-decoration: dotted underline 2px var(--bg);
}

textarea {
    background: var(--bg);
    color: var(--white);
    border: solid 1px var(--primary);
    padding: 2.5px;
}

.button {
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0 20px 0;
}

.space-between {
    justify-content: space-between;
}

.space-evenly {
    justify-content: space-evenly;
}

.outlink::after {
    content: "\2BBA";
    margin-left: 2.5px;
    text-decoration: dotted underline 2px var(--bg);
}

.scrollbox {
    max-height: 85px;
    overflow: auto;
}

small {
    font-size: 14px;
    color: rgb(125, 125, 125);
}

.margin {
    margin: 10px 20px 10px 10px;
}

.back {
    position: fixed;
    top: 10px;
    left: 10px;
    display: inline-block;
}

.left-lace {
    width: clamp(30px, 30px, 30px);
    height: auto;
    background: url("https://glassheart.neocities.org/gfx/v2025/lace1-l.png");
    background-size: 100% auto;
    background-repeat: repeat-y;
    flex-shrink: 0;
}

.right-lace {
    width: clamp(30px, 30px, 30px);
    height: auto;
    background: url("https://glassheart.neocities.org/gfx/v2025/lace1-r.png");
    background-size: 100% auto;
    background-repeat: repeat-y;
    flex-shrink: 0;
}

.credits {
  font-size: 14px;
}

.filler {
    flex-grow: 1;
    flex-shrink: 0;
    padding: 5px 0 5px 0;
    background: linear-gradient(var(--primary) 50%, transparent 50%);
    background-repeat: repeat;
    background-size: 100% 4px;
}

.showoff-img {
    background: url("");
    
    background-size: cover;
    background-position: center;
    background-clip: border-box;
    width: clamp(380px, 380px, 380px);
    height: clamp(275px, 275px, 275px);
    margin: 10px;
    filter: sepia(1) contrast(1.75) hue-rotate(280deg) saturate(2.5);
}

.showoff-img:hover {
    filter: none;
}

/* LINKS STYLES */

#sites {
    flex-flow: row wrap;
    justify-content: center;
    gap: 5px;

    margin: 10px;
}

#sites img:hover {
   transform: scale(1.15);
   transition: all 0.3s; 
}

.fakebutton {
    width: clamp(88px, 88px, 88px);
    height: clamp(31px, 31px, 31px);
    border: solid 1px var(--primary);
    font-size: 10px;
    text-align: center;
    line-height: 29px;
}

.fakebutton:has(a:hover) {
    border: solid 1px var(--white);
}

.fakebutton a {
    text-decoration: none;
}

#links p:has(small) {
  text-align: center;
  margin: 20px 30px 20px 30px;
}

/* MEDIA LOG STYLES */

.medialog { width: min(1200px, 100%); }

.medialog header h1 {
    border-radius: 50%;
    width: fit-content;
    padding: 90px 40px 90px 40px;
    margin: 0 auto -10px auto;
    
    text-align: center;
    background: var(--primary);
    color: var(--bg);
    
    outline: solid 4px var(--bg);
    outline-offset: -10px;
}
        
.content2 {
    margin: 0 5px 0 5px;
}

.container2 h2 {
    text-align: center;
}

.log {
    gap: 20px;
    margin: 10px 0 0 0;
}

.col:first-of-type {
    border-right: solid 4px var(--primary);
}

.container2 .col {
    padding: 0 40px 0 40px;
}

.entry {
    border-bottom: solid 2px var(--primary);
    padding: 10px 0 20px 0;
    gap: 10px;
}

.entry:last-of-type {
    border: none;
    padding-bottom: 0;
    margin-bottom: 20px;
}

.entry img {
    width: clamp(200px, 200px, 200px);
    height: clamp(200px, 200px, 200px);
    object-fit: cover;
    object-position: center;
}

.entry span {
    max-width: calc(100% - 220px);
}

.entry h3 {
    font-size: 22px;
    display: inline-block;
    margin: 0 10px 0 10px;
}

.entry p {
    display: inline-block;
    width: 100%;
    text-align: justify;
}

.score { margin: 0 0 0 10px; }

/* STATUS.CAFE vvv */

#statusby {
    text-align: right;
}

q::before { color: var(--primary); content: "\300C"; margin-right: 10px; font-weight: bold; }
q::after { color: var(--primary); content: "\300D"; margin-left: 10px; font-weight: bold; }

/* ANIMATIONS */

@keyframes shiftHue {
    5% { color: var(--primary); }
    20% { color: orange; }
    45% { color: yellowgreen; }
    60% { color: dodgerblue; }
    75% { color: darkorchid; }
    95% { color: magenta; }
    100% { color: var(--primary); }
}

/* MOBILE STYLES */

@media (max-width: 800px) {
    body { margin: 0; }
    .container { flex-flow: column nowrap; }
    .left-column, .right-column { width: 100%; }
    .left-lace, .right-lace { display: none; }
    .outlink::after { content: "\2197"; }

    .content2 { margin: 0; }
    .container2.row { flex-flow: column nowrap; }
    .medialog header h1 { border-radius: 0; width: 100%; padding: 20px 0 20px 0; }
    .col:first-of-type { border: none; }
    .entry.row { flex-flow: column nowrap; align-items: center; }
    .col:first-of-type .entry:last-of-type { border-bottom: solid 2px var(--primary); padding: 10px 0 20px 0; }
    .entry span { max-width: calc(100% - 40px); }
    .entry p { max-width: calc(100% - 20px); }
}