* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --f-main: "Iosevka Charon Mono", monospace;

    --bg: #ffffff;
    --tx: #000000;
    --tx-light: rgba(0, 0, 0, 0.7);
    /* --tx2: #606060; */
    --cf: #DE1304;
    --cf-dark: #b10c00;

    /* --padding-side: 50px;
    --padding-top: 34px; */
}

::selection {
    background: var(--cf);
    color: var(--tx);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 16px;
    height: 16px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--cf);
    border-radius: 0;
    border: none;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--cf-dark);
}

/* Firefox */
* {
    scrollbar-color: var(--cf-dark) var(--bg);
}

body {
    background-color: var(--bg);
    color: var(--tx);
    font-family: var(--f-main);
    font-size: 16px;
    cursor: crosshair;
}

/*  */

/* .visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
} */

/* img, svg, video {
  pointer-events: none;
  user-select: none;
} */

a {
    color: inherit;
    text-decoration: none;
}

/* a:hover {
    color: var(--cf);
} */

/* button {
  border: none;
  background-color: transparent;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
} */

/* h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
} */

/* .cf {
  color: var(--cf);
} */

/* .tx2 {
    color: var(--tx2);
} */

/* .text-stroke {
    -webkit-text-stroke: 1.5px var(--tx);
    color: var(--bg);
    paint-order: stroke fill;
} */

/*  */

header {
    position: fixed;
    top: 0;
    left: 0;
    padding: 50px;
    z-index: 9999;
    mix-blend-mode: difference;
}
.logo-link img {
    width: 90px;
}

/*  */

/* #smooth-content {
    border-right: 1px solid var(--tx);
} */