:root {
    --primary-color: rgb(67, 214, 113);
    --accent-color: rgb(64, 64, 64);
}
html, body {
    overscroll-behavior: none;
}

@font-face {
    font-family: 'VCR OSD mono';
    src: url('../fonts/VCR_OSD_MONO_1.001.ttf')
}
.VCR-OSD-mono {
    font-family: 'VCR OSD mono';
}
.micro-5-regular {
    font-family: "Micro 5", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
.sixtyfour-font {
    font-family: "Sixtyfour", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "BLED" 0,
        "SCAN" 0;
}
.quote-font {
    font-family: "Jacquarda Bastarda 9", serif;
    font-weight: 400;
    font-style: normal;
}  


body {
    margin: 0px;
    padding: 0px;
    background-image: url(".././pics/flower-bg.png");
    display: flex;
    justify-content: center;
    overflow-x: hidden;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

#mainContainer {
    padding-right: 50px;
    padding-left: 50px;
    padding-top: 5px;
    background-image: url(".././pics/whitepattern.png");
    width: 80%;
    border-right: 3px var(--accent-color) dashed;
    border-left: 3px var(--accent-color) dashed;
    min-height: fit-content;
}

.divider-hard {
    height: 0px;
    border: 2px solid black;
    margin-top: 20px;
    margin-bottom: 20px;
}

.divider-soft {
    height: 0px;
    border: 2px black dotted;
    margin-top: 20px;
    margin-bottom: 20px;
}

.story-title {
    text-align: center;
    font-size: 50px;
}

#main-container > * {
    margin-top: 10px;
    margin-bottom: 10px;
}

.para {
    font-family: 'VCR OSD mono';
    font-size: 20px;
    line-height: 1.4;
    padding-top: 10px;
    padding-bottom: 10px;
}

.note {
    font-family: 'VCR OSD mono';
    font-size: 20px;
    line-height: 1.4;
    border-left: 5px solid black;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.subheader {
    font-family: 'VCR OSD mono';
    font-weight: bold;
    font-size: 30px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.miniheader {
    font-family: 'VCR OSD mono';
    font-weight: bold;
    font-size: 25px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.image-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 40px;
}

img {
    min-height: 30px;
    max-width: 80%;
    padding: 10px;
}

.code {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 20px;
    font-family: 'VCR OSD mono';
    border-radius: 10px;
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    word-break: break-all;
}

.medium-link {
    text-align: center ;
    font-family: 'VCR OSD mono';
    font-size: 30px;
    padding: 5px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.medium-link > a {
    padding: 10px;
    border: 4px solid black;
    color: black;
}