html {
    height: 100vh;
    width: 100vw;
    background: unset;
    line-height: 1em;
    scrollbar-width: thin;
    scrollbar-color: #0f1211 #1d1e1b;
}

@font-face {
font-family: 'djb_emphatic'; 
src: url("../../fonts/DJB EMPHATIC.ttf") format("truetype");
}

@font-face {
font-family: 'pixel1'; 
src: url("../../fonts/VCR_OSD_MONO_1.001.ttf") format("truetype");
}

@font-face {
font-family: 'pixel2'; 
src: url("../../fonts/Hardpixel.OTF") format("opentype");
}

@font-face {
font-family: 'pixel3'; 
src: url("../../fonts/pixelmix.ttf") format("truetype");
}

@font-face {
font-family: 'crt1'; 
src: url("../../fonts/oldschool_fontpack/Web437_Acer710_Mono.woff") format("truetype");
}

head {
  background-size: 80px 80px;
  position: fixed;
  color: black;
  font-family: 'pixel3';
  font-size:100%;
}

.crt:before {
    content: " ";
    display: block;
    position: fixed;
    inset: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, .25) 50%), linear-gradient(90deg, rgba(255, 0, 0, .06), rgba(0, 255, 0, .02), rgba(0, 0, 255, .06));
    z-index: 999;
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
}

body {
    color: chartreuse;
    font-family: 'crt1';
    font-size: calc(0.8vw + 0.3125em);
    overflow: hidden auto;
    margin: 0px;
    padding: 0%;
    text-align: left;
}

.row {
    flex-direction: row;
}

.rowreverse {
    flex-direction: row-reverse;
}

.logcontainer {
    align-items: flex-start;
    text-align: left;
    background: #00000044;
    padding: 10px;
    margin-bottom: 10px;
}

.red {
  color: red;
  text-shadow: 2px 2px 0 black, 2px -2px 0 black, -2px 2px 0 black, -2px -2px 0 black;
}

.white{
  color:white;
  text-shadow: 2px 2px 0 black, 2px -2px 0 black, -2px 2px 0 black, -2px -2px 0 black;
}

.active {
  color: #2D407F;
}

.container {
  margin: 30px;
  width: fit-content;
  height: fit-content;
  background-image: url(../backgrounds/naomibg.png);
  border: 20px solid #2D407F;
  border-image: url(../backgrounds/whitelace2.png) 17 repeat;
  background-size:5%;
  padding:10px;
  text-align: left;
  color:white;
  font-family: pixel3;
  font-size: calc(0.6vw + 0.3125em);
  background-clip: padding-box;
}

.container ul {
  backdrop-filter: brightness(50%);
  width: 40%;
  min-width: fit-content;
  margin-left:10px;
  padding:10px;
  padding-left:30px;
}

.textcontainer {
  width: calc(100% - 60px);
  height: fit-content;
  background-image: url(../backgrounds/naomibg.png);
  border: 20px solid #2D407F;
  border-image: url(../backgrounds/whitelace2.png) 17 repeat;
  background-size:5%;
  padding:10px;
  text-align: left;
  color:white;
  font-family: pixel3;
  font-size: calc(0.6vw + 0.3125em);
  background-clip: padding-box;
}

h1 {
  margin: 10px;
  margin-bottom: 15px;
  color: white;
}

a:link {
  color: unset;
}

a:active {
  color: unset;
}

a:visited {
  color: unset;
}

a:hover {
  color: unset;
}

.flex {
    display: flex;
    align-content: center;
    justify-content: center;
}

.navcont {
    border-right: 4px solid #111;
    height: 100%;
    border-left: 0px;
    text-align: left;
    border-radius: 5px 0px 0px 5px;
}

.buttonlist{
    backdrop-filter: none;
    padding: 0px 2em;
    list-style-type: none;
    margin: 2em 1em 2em 0em;
}

.buttonlist li {
    transition: transform 0.1s;
    padding: 2.5px 0px;
    margin: 0.5em 0px;
    color: chartreuse;
} 

.buttonlist li:hover {
    transform: translate(10px, 0px);
} 

.buttonlist li > a {
    padding: 0px 5px;
    margin:0px;
    transition: transform 0.1s;
    cursor: pointer;
    text-decoration: unset;
} 

.buttonlist li:not(#activelink) > a:hover {
    transform: translate(5px, 0px);
    color: color-mix(in srgb, chartreuse 75%, black 25%);
}

.marquee {
    width: 100%;
    height: 25px;
    background: #101010 linear-gradient(#00000000, #ffffff50 25%, #73737325 40%, #00000050);
    overflow: hidden;
    position: relative;
    user-select: none;
}

.marquee p {
    font-size: 15px;
    padding: 5px;
    width: max-content;
    margin: 0px;
    position: absolute;
    width: max-content;
    height: 100%;
    text-align: center;
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -moz-animation: scroll-left 36s linear infinite;
    -webkit-animation: scroll-left 36s linear infinite;
    animation: scroll-left 36s linear infinite;
}
            
@-moz-keyframes scroll-left {
    0% {
        -moz-transform: translateX(80%);
    }
    100% {
        -moz-transform: translateX(-140%);
    }
}
            
@-webkit-keyframes scroll-left {
    0% {
        -webkit-transform: translateX(80%);
    }
    100% {
        -webkit-transform: translateX(-140%);
    }
}
            
@keyframes scroll-left {
    0% {
        -moz-transform: translateX(80%);
        -webkit-transform: translateX(80%);
        transform: translateX(80%);
    }
    100% {
        -moz-transform: translateX(-140%);
        -webkit-transform: translateX(-140%);
        transform: translateX(-140%);
    }
}

.left {
    float: left;
}

.right {
    float: left;
}

#bg {
  background-image: url("../backgrounds/naomibg2.png");
  background-size: 100%;
  background-position-y: bottom;
  height: 100%;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-repeat:no-repeat;
}

#navbar {
    list-style-type: none;
    margin: 10px;
    margin-top: 4.25%;
    margin-left: 7%;
    padding: 0.6%;
    overflow: hidden;
    background-color: #333;
    font-family: 'pixel3';
    font-size: calc(0.6vw + 5.5pt);
    border: 5px solid #2D407F;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 01), 9px, rgba(0, 0, 0, 0)), url(../backgrounds/tile2.png);
    height: fit-content;
    width: fit-content;
    padding-left: 10%;
    padding-right: 5%;
    box-shadow: 6px 6px 10px #03061F;
    border-left:0px;
}

#navbar li {
  float: left;
  border-right: 2px solid #222;
}

#navbar li .active {
  color: black;
}

#navbar li a:hover:not(.active) {
  color: gray;
}

#navbar li:last-child {
  border-right: none;
}

#navbar li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

#logo {
  position: absolute;
  top: 10px;
  left: 0px;
  max-width:15vw ;
  min-width:75px;
  width: 20vw;
  filter: drop-shadow(6px 6px 10px #03061F);
}

#anticopy {
    text-align: center;
    bottom: 25px;
    left: 0px;
    right: 0px;
    margin: auto;
    color: #000A4E;
    text-shadow: 1px 1px 0 white, 1px -1px 0 white, -1px 1px 0 white, -1px -1px 0 white;
    margin-bottom: 30px;
}

#banner {
    margin-bottom: 5px;
    margin-top: 10px;
    border-top-right-radius: 350px;
    border-bottom-left-radius: 350px;
    max-width: 90vw;
    max-height: calc(90vw* 10 / 3);
    backdrop-filter: opacity(50%);
    border: 5px solid #2D407F;
    width: 100%;
    box-shadow: 6px 6px 10px #03061F;
}

#talkcontainer {
    position: relative;
    top: 0px;
    bottom: 0px;
    width: 55%;
    margin: auto;
    max-width: 990px;
}

#talksprite {
    width: 41%;
    position: relative;
    min-width: 128px;
    max-width: 225px;
}

#mebox {
    float: left;
    width: 24%;
    aspect-ratio: 1 / 1;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 10px;
  
}

#me {
    width: 100%;
    min-width: 64px;
    max-width: 128px;
    border: 5px solid white;
    border-radius: 10px;
  
}

#currentstatus {
    background-image: url(../../backgrounds/clouds.gif);
    background-size: 100%;
    position: absolute;
    left: 30%;
    bottom: 60%;
    width: fit-content;
    height: fit-content;
    padding: 3.5%;
    border: 5px solid #B2C3ED;
    border-radius: 50px;
    border-bottom-left-radius: 0px;
    color: white;
    z-index: 2;
}

#statuscafe {
    padding: .5em;
    background-color: azure;
    border: 1px solid midnightblue;
}
#statuscafe-username {
    margin-bottom: .5em;
}
#statuscafe-content {
    margin: 0 1em 0.5em 1em;
}

#draggable {
    position: absolute;
    resize: both;
    width: 300px;
    overflow: hidden;
}

#draggable2 {
    position: absolute;
    resize: both;
    width: 300px;
    overflow: hidden;
}


#naomitime {
  width: 100%;
  height: 100%;
  background-image: url(../backgrounds/websitebg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

#naomifloat {
  width:100%;
  position:absolute;
  animation: float 1.5s infinite;
  animation-timing-function: ease-in-out;
  bottom: 15px;
}

@keyframes float {
    0% { transform: translate(0,  0px); }
    50%  { transform: translate(0, 15px); }
    100%   { transform: translate(0, -0px); }    
}

#taskbar {
  position: absolute;
  bottom: 0;
  width: 100%;
}

#taskbar .title-bar {
    box-shadow: none;
    border-left: none;
    border-right: none;
    border-bottom: none;
    border-radius: 0;
    height: 36px;
    border-top: 1px solid rgba(0, 0, 0, .7);
    background: var(--window-background-glass-stripes), rgba(69, 128, 196, 0.6);
}

#border {
    width: 100%;
    top: 1px;
    left: 0;
    border-top: 1px solid #fffd;
    position: absolute;
}

#date {
    width: 90px;
    text-align: center;
    color: white;
    margin-top: 6px;
}

#taskbar button {
    height: 42px;
    margin: 1px;
    width: 20px;
    margin-top: 6px;
    padding: 0;
    border: none;
    background: none;
    box-shadow: none;
}

#taskbar img {
    width: 37px;
    height: 37px;
    margin-top: 3px;
}

#buttocks:hover {
    filter: brightness(1.2) drop-shadow(0 0 0.75rem black);
}

#main {
    width:75vw;
    height:70vh;
    background-image:url(../backgrounds/dots.png);
    background-size: 24px;
    background-repeat: repeat;
    background-color:#222;
    border:4px solid #111;
    border-radius:10px;
    position:absolute;
    left:12.5vw;
    top:15vh;
}

#framed {
    position: relative;
    width: calc(100% - 10vw);
    height: 100%;
    background: #1f1f1f;
    border-radius: 0px 5px 5px 0px;
}

#realbackbutton {
    position: absolute;
    left: -1em;
    bottom: 0px;
    width: 6.1em;
    height: 2em;
    background-image: url(../../backgrounds/tiles.gif);
    border: 4px solid #00b;
    border-width: 4px 4px 0px 0px;
    padding-bottom: 5px;
    border-radius: 0px 10px 0px 0px;
    z-index: 1000;
    transition: 0.2s ease;
}

#realbackbutton:hover {
    left: 0px;
    filter: brightness(1.25);
}

#backbutton {
    position: absolute;
    left: 20px;
    top: 20px;
    color: chartreuse;
    text-decoration: unset;
    font-size: 0.8em;
}

#backbutton:hover {
    color:color-mix(in srgb, chartreuse 50%, black 50%);
}

#frames {
    border: 0px;
    padding: 1em;
    height: calc( 100% - 55px );
    width: calc( 100% - 30px );
    padding: 15px;
    border-radius: 0px 10px 10px 0px;
}

#activelink {
    color:color-mix(in srgb, chartreuse 50%, black 50%);
}


#loop {
    visibility: hidden;
    position: absolute;
}

#audiobutton {
    position: absolute;
    top: 20px;
    right:20px;
    cursor: pointer;
    width: 40px;
}

#audiobutton:hover {
    filter:brightness(0.75);
}

#webamp-icon {
    position: absolute;
    bottom: 20px;
    right:20px;
    cursor: pointer;
    width: 32px;
}