:root {
    --light: 254, 240, 214;
    --green: 184, 206, 80;
    --orange: 241, 95, 57;
    --blue: 44, 43, 125;
}
@font-face {
    font-family: 'Minotaur'; 
    src: url('../fonts/minotaur.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Helps with performance/loading */
}
@font-face {
    font-family: 'GT Flexa'; 
    src: url('../fonts/GT-Flexa-Condensed-Light-Trial.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Helps with performance/loading */
}
@font-face {
    font-family: 'GT Flexa'; 
    src: url('../fonts/GT-Flexa-Medium-Trial.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap; /* Helps with performance/loading */
}
@font-face {
    font-family: 'BP Dots'; 
    src: url('../fonts/BPdotsSquareBold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Helps with performance/loading */
}

*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    margin: 0;
    font-family: 'Source Code Pro', monospace;
    background: rgb(var(--light));
    overflow-x: hidden;
    /* overflow-y: scroll; */
    overflow: hidden;
    font-family: GT Flexa, sans serif;
    color: rgb(var(--blue));
}
.deco-line {
    position: absolute;
    pointer-events: none;
    width: 100vw; 
    height: 10vw; 
    z-index: 0;
    pointer-events: none;
    left: 0;
}
.blue-line{
    background: rgba(var(--blue), 0.3);
    border-top: 5vw solid rgb(var(--blue));
}
.orange-line {
    background: rgba(var(--orange), 0.3);
    border-top: 5vw solid rgb(var(--orange));
}
.green-line {
    background: rgba(var(--green), 0.3);
    border-top: 5vw solid rgb(var(--green));
}
.top {
    transform: rotate(180deg);
}
.deco-line {
    height: 42px;
}
.blue-line, .orange-line, .green-line {
    border-top-width: 21px;
}

.blue-line.top {
    top: 84px;
}
.orange-line.top {
    top: 42px ;
}
.green-line.top {
    top: 0;
}
.blue-line.bottom{
    bottom: 84px;
}
.orange-line.bottom {
    bottom: 42px ;
}
.green-line.bottom {
    bottom: 0;
}

.sr-only {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}
.green {
    color: rgb(var(--green));
}
.orange {
    color: rgb(var(--orange));
}
.blue {
    color: rgb(var(--blue));
}
.is-style-accent-font {
    font-family: Minotaur, sans-serif;
}
.is-style-dot-font {
    font-family: BP Dots, monospace;
    font-weight: bold;
}

h1 {
    font-family: BP Dots, monospace;
    /* transform: rotate(-20deg) translateY(-8px); */
    margin-bottom: auto;
}
h1 span {
    font-family: GT Flexa, sans serif;
    font-weight: bold;
}

h1 img {
    width: 220px;
    height: 120px;
}
section h2 {
    color: rgb(var(--blue));
}
h3 {
    margin: 0;
}
button {
    background: transparent;
    border: none;
}
ul,
ol {
    text-align: left;
    padding-left: 16px;
}

em {
    font-family: BP Dots, monospace;
    font-size: 11px;
}

a {
    color: rgb(var(--orange));
}

p,
li {
    font-size: 18px;
    margin: 10px 0;
    line-height: 1.35;
}

p + h3 {
    margin-top: 36px;
}

#app {
    display: flex;
    align-items: center;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 100%;
    overflow-x: hidden;
    box-sizing: border-box; /* Ensures padding doesn't add to the height */
    overflow: scroll;
    z-index: 1;
    scroll-behavior: smooth;
}

@media screen and (min-width: 768px) {
    
}