/*Copyright 2023-2026, You Are Machines, All rights reserved lol*/

/* Fonts */

@font-face {
    font-family: 'MomsTypewriter';
    src: url('/media/assets/fonts/MomsTypewriter.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Chalk';
    src: url('/media/assets/fonts/Chalk.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Jackwrite';
    src: url('/media/assets/fonts/Jackwrite.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'LCD';
    src: url('/media/assets/fonts/LCDMono.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Pixel';
    src: url('/media/assets/fonts/NotJamPixel5.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
  }

::-webkit-scrollbar-track {
  background: rgba(241, 241, 241, 0);
}

::-webkit-scrollbar-thumb {
  background: rgb(175, 175, 175);
  border: solid 0px black;
  border-radius: 1em;
}

::-webkit-scrollbar-thumb:hover {
  background: rgb(197, 150, 79);
}

@-moz-document url-prefix() {
    *{
        scrollbar-width: thin;
        scrollbar-color: rgb(197, 150, 79);
    }
}


/*custom cursor*/
html {
    cursor: url(https://youaremachines.com/media/assets/ui/cursor/3D_red_normalselect.cur), default;
}

.arrow-cursor {
    cursor: url(https://youaremachines.com/media/assets/ui/cursor/3D_red_normalselect.cur), default;
}

.pointer {
    cursor: url(https://youaremachines.com/media/assets/ui/cursor/3D_red_linkselect.cur), pointer;
}

.click-cursor {
    cursor: url(https://youaremachines.com/media/assets/ui/cursor/3D_red_linkselect.cur), pointer;
}

video {
    cursor: url(https://youaremachines.com/media/assets/ui/cursor/3D_red_linkselect.cur), pointer;
}

.zoomable {
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
}

a {
    cursor: url(https://youaremachines.com/media/assets/ui/cursor/3D_red_linkselect.cur), pointer;
}

.click-cursor:active {
    background-color: rgba(0, 0, 0, 0.363);
}

.click-cursor-no-active {
    cursor: url(https://youaremachines.com/media/assets/ui/cursor/3D_red_linkselect.cur), pointer;
}


/* Primary */
h1, h2, h3, small {
    font-family: Jackwrite;
}

h1 {
    font-size: 2.46em;
}

h2 {
    font-size: 1.8em;
}

h3 {
    font-size: 1.6em;
}

p {
    font-size: 1.38em;
}

small {
    font-size: 1em;
}

body {
    font-family: Jackwrite;
    background-color: rgb(0, 0, 0);
    color: rgb(175, 175, 175);
    margin: 0px;
    overflow-x: hidden;
    height: 100vh;
    position: relative;
    overflow-y: hidden;
    top: 0;
}


img {
    max-width:100%;
    height: auto;
}

a {
    color: rgb(197, 150, 79);
    font-weight: bold;
    margin-top: 1em;
    margin-bottom: 1em;
}

.debug {
    outline: red;
    outline-style: dotted;
}

.debug2 {
    background-color: rgba(255, 255, 255, 0.507);
}

.center-v-h {
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-center {
    text-align: center;
}

.unbold {
    font-weight: normal;
}

.linethrough {
    text-decoration: line-through;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.column-center {
    align-items: center
}

.align-top {
    align-items: flex-start
}

.align-bottom {
    align-items: end;
}

.no-margin {
    margin: 0;
}

.no-drag {
    -webkit-user-drag: none;
}

/* no-drag for firefox */
@-moz-document url-prefix() {
    .no-pointer-events {
        pointer-events: none;
    }
}

.no-pointer-events {
    pointer-events: none;
}

.no-select {
    user-select: none;
}

.hide-overflow-x {
    overflow-x: hidden;
}

.invisible {
    opacity: 0;
}

/* zoomable imgs */

.zoomed-img-container {
    position: absolute;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.zoomed-img-container > img {
    max-width: 100%;
    max-height: 100%;
    cursor: url(https://youaremachines.com/media/assets/ui/cursor/3D_red_normalselect.cur), default;
}

.black-bg{
    background-color: rgba(0, 0, 0, .75);
    position: absolute;
    width: 100%;
    height: 120%;
    z-index: 999;
}

.x-button {
    position: absolute;
    right: 0;
    top: 0;
    margin-top: 30px;
    margin-right: 38px;
    padding: 1%;
    min-width: 1.8em;
    min-height: 1.8em;
    color: black;
    background-color: rgba(213, 210, 205);
    border-radius: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.x-button:hover {
    background-color: rgb(200, 167, 129);
}

.x-button:active {
    background-color: rgb(181, 127, 0);
}