/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

body {
  margin: 0;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

button,
input {
  /* 1 */
  overflow: visible;
}

button,
select {
  /* 1 */
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button  ;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

@font-face {
  font-family: "000webfont";
  src: url("fonts/000webfont.ttf") format("truetype"), ;
}

@font-face {
  font-family: "basiic";
  src: url("fonts/basiic.ttf") format("truetype");
}

@font-face {
  font-family: "virale";
  src: url("fonts/virale.ttf") format("opentype");
}

@font-face {
  font-family: "Pixel Operator";
  src: url("fonts/pixel_operator/PixelOperator.ttf") format("truetype");
}

html,
body {
  cursor: url(img/graphics/cursor.gif);
  background-repeat: repeat;
  background-color: #ffffff;
  width: 1920px;
  height: 1080px;
  display: grid;
  grid-gap: 10px;
  overflow: hidden;
  grid-template: "leftSidebar header header"
    "leftSidebar main rightSidebar"
    "footer footer footer" / 1fr 5fr 1fr;
  grid-template-rows: 125px 2fr 75px;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f100;
}

::-webkit-scrollbar-thumb {
  background: #f1f1f100;
}

::-webkit-scrollbar-thumb:hover {
  background: #f1f1f100;
}

[data-tooltip] {
  position: relative;
  cursor: help;
}

[data-tooltip]::before,
[data-tooltip]::after {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none;
  z-index: 1000;
}

[data-tooltip]::before {
  content: attr(data-tooltip);
  background: rgb(255, 255, 255);
  font-family: "Pixel Operator", sans-serif;
  color: #6296D2;
  padding: 3px 10px;
  border: #6296D2 1.75px solid;
  max-width: 250px;
  border-radius: 0px 0px 10px 0px;
  corner-shape: bevel;
  width: 110px;
  text-align: center;
  font-size: 14px;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

[data-tooltip]::after {
  content: "";
  border: 8px solid transparent;
}

/* Positions */
[data-direction="top"]::before,
[data-direction="top"]::after {
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%) translateY(10px);
}

[data-direction="top"]::after {
  border-top-color: rgba(98, 150, 210, 1);
  margin-bottom: -4px;
}

[data-direction="top"]::before {
  margin-bottom: 12px;
}

[data-direction="bottom"]::before,
[data-direction="bottom"]::after {
  left: 50%;
  top: 100%;
  transform: translateX(-50%) translateY(-10px);
}

[data-direction="bottom"]::after {
  border-bottom-color: rgba(98, 150, 210, 1);
  margin-top: -4px;
}

[data-direction="bottom"]::before {
  margin-top: 12px;
}

[data-direction="left"]::before,
[data-direction="left"]::after {
  top: 50%;
  right: 100%;
  transform: translateY(-50%) translateX(10px);
}

[data-direction="left"]::after {
  border-left-color: rgba(98, 150, 210, 1);
  margin-right: -4px;
}

[data-direction="left"]::before {
  margin-right: 12px;
}

[data-direction="right"]::before,
[data-direction="right"]::after {
  top: 50%;
  left: 100%;
  transform: translateY(-50%) translateX(-10px);
}

[data-direction="right"]::after {
  border-right-color: rgba(98, 150, 210, 1);
  margin-left: -4px;
}

[data-direction="right"]::before {
  margin-left: 12px;
}

/* Trigger */
[data-tooltip]:hover::before,
[data-tooltip]:hover::after {
  opacity: 1;
  visibility: visible;
}

[data-direction="top"]:hover::before,
[data-direction="top"]:hover::after,
[data-direction="bottom"]:hover::before,
[data-direction="bottom"]:hover::after {
  transform: translateX(-50%) translateY(0);
}

[data-direction="left"]:hover::before,
[data-direction="left"]:hover::after,
[data-direction="right"]:hover::before,
[data-direction="right"]:hover::after {
  transform: translateY(-50%) translateX(0);
}

h1 {
  font-family: "000webfont", sans-serif;
  font-size: 60px;
  color: #6296D2;
  font-weight: 50;
  margin: 0px 10px 0px 10px;
}

h3 {
  font-family: "000webfont", sans-serif;
  font-size: 20px;
  color: #ffffff;
  font-weight: 500;
}

p {
  font-family: "Pixel Operator", sans-serif;
  font-size: 13px;
  color: #4c4c4c;
}

table {
  width: 330%;
}

th {
  font-family: "000webfont", sans-serif;
  font-size: 20px;
  color: #6B6B6B;
  font-weight: 500;
  text-align: left;
  padding: 3px 15px 3px 10px;
}

td {
  font-family: "Pixel Operator", sans-serif;
  font-size: 13px;
  color: #6B6B6B;
  font-weight: 500;
  text-align: left;
  padding: 10px 30px 10px 10px;
}

/* H E A D E R / N A V */
.site-title {
  margin: 55px 0px 0px 0px;
}

.navbar {
  grid-area: header;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-items: center;
  align-content: stretch;
  gap: 20px;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  max-height: 90px;
  width: 81%;
}

.nav-links {
  flex-grow: 1;
  width: 30%;
}

.nav-links table {
  margin: 0px 0px 0px 3px;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 8px;
}

.nav-links td {
  padding: 0px 0px 0px 5px;
  background-color: #EDEDED;
  border-radius: 0px 15px 0px 0px;
  corner-shape: bevel;
}

.nav-links a {
  color: #6B6B6B;
  text-align: left;
  padding: 0px 0px 0px 10px;
  text-decoration: none;
  font-family: "000webfont", sans-serif;
  font-size: 20px;
  border-radius: 0px 15px 0px 0px;
  corner-shape: bevel;
  display: block;
  width: 100%;
  height: 100%;
}

.nav-links a:hover {
  background-color: #6296D2;
  color: #ffffff;
}

.nav-links td:hover {
  background-color: #6296D2;
  color: #ffffff;
}

.activepage {
  background-color: #6296D2 !important;
  color: #ffffff;
}

.activepage a {
  color: #ffffff;
}

.description {
  margin: 0px 0px 0px 0px;
  background-color: #EDEDED;
  width: 400px;
  height: 60px;
}

.description h3 {
  margin: 8px 20px 10px -5px;
  text-align: left;
}

.description h1 {
  font-size: 15px;
  margin: 12px 20px 0px 10px;
}

.subtitle {
  text-decoration: none;
  font-family: "000webfont", sans-serif;
  font-size: 20px;
}

/* END H E A D E R / N A V */
/* MAIN */
main {
  grid-area: main;
  margin: 75px 0px 0px 0px;
  width: 80%;
}

.welcome {
  background-color: #ffffff;
  display: flex;
  border: 1px solid #6296D2;
  border-radius: 0px 0px 15px 0px;
  corner-shape: bevel;
}

.welcome img {
  padding: 10px;
}

.welcometxt {
  padding: 15px 40px 10px 10px;
}

.stamprow {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
  margin: 5px 0px 0px 0px;
}

.stamprow img {
  width: 100px;
}

.blinkies {
  background-color: #FFFEFC;
  padding: 10px;
  margin: 15px 0px;
  width: 97%;
}

.blinkiesbck {
  padding: 10px 10px 10px 10px;
  background-color: #DEE1E8;
}

.mainparent {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: 5rem 5rem 3rem 20rem;
  gap: 15px;
}

.timetxt {
  font-family: "000webfont", sans-serif;
  font-size: 15px;
}

.time {
  font-family: 'Your-Font-Name', sans-serif !important;
  font-size: 24px !important;
  color: #333333 !important;
}

/* Info */
.div1 {
  grid-column: span 7 / span 7;
  grid-row: span 2 / span 2;
}

/* Blinks */
.div2 {
  grid-column: span 7 / span 7;
  grid-row-start: 3;
  align-items: center;
  max-height: 4rem;
}

/* Updates */
.div3 {
  display: flex;
  grid-column: span 4 / span 4;
  grid-row-start: 4;
  width: 95%;
  height: 100%;
  border: 1px solid #6296D2;
  border-radius: 0px 0px 15px 0px;
  corner-shape: bevel;
}

.updates-border {
  width: 100%;
  border: 1px solid #6296D2;
  border-radius: 0px 0px 15px 0px;
  corner-shape: bevel;
  margin: 10px 10px 10px 10px;
}

.updates-header {
  margin: 5px;
}

.updates-header h2 {
  font-family: "000webfont", sans-serif;
  font-size: 20px;
  color: #fff;
  background-color: #6296D2;
  padding: 10px 10px 20px 10px;
  margin: 5px;
  font-weight: 100;
  height: 10px;
}

.updates-border h3 {
  font-family: "000webfont", sans-serif;
  font-size: 20px;
  color: #fff;
  background-color: #7089B5;
  padding: 10px 10px 20px 10px;
  margin: 5px;
  font-weight: 100;
  height: 10px;
}

.changelog {
  font-family: "Pixel Operator", sans-serif;
  overflow-y: scroll;
  overflow-x: hidden;
  width: 92%;
  height: 215px;
  overflow-y: auto;
  margin: 11px 10px 10px 10px;
  padding: 0px 0px 0px 0px;
  scrollbar-width: thin;
  scroll-behavior: smooth;
  scrollbar-color: #6296D2 #fff;
}

.log {
  background-color: #efefef;
  padding: 10px 10px 10px 15px;
  margin: 0px 10px 10px 0px;
  width: 87%;
}

.date {
  font-family: "000webfont", sans-serif;
  font-size: 20px;
  color: #ffffff;
  background-color: #6296D2;
  width: 100%;
  padding: 5px 115px 5px 10px;
  margin: 0px 0px 0px -5px;
}

.todo {
  font-family: "Pixel Operator", sans-serif;
  padding: 5px;
  margin: 10px 10px 5px 10px;
  background-color: #efefef;
  border-radius: 0px 0px 15px 0px;
  corner-shape: bevel;
  overflow: scroll;
  overflow-x: hidden;
  scrollbar-width: thin;
  scroll-behavior: smooth;
  scrollbar-color: #6296D2 #fff;
  height: 210px;
}

.todo p {
  margin-left: -4px;
}

.todo ul {
  width: 80%;
  list-style: none;
  margin: 0px 0px 0px -20px;
}

.todo ul li {
  font-family: "Pixel Operator", sans-serif;
  font-size: 13px;
  color: #4c4c4c;
  margin: 10px -15px 0px 0px;
}

.todo ul li:before {
  content: '\2726';
  color: #6296D2;
  font-size: 13px;
  margin: 0px 2px 0px -12px;
}

/* Art */
.div4 {
  grid-column: span 2 / span 2;
  grid-column-start: 6;
  grid-row-start: 4;
}

.featureart {
  border: #6296D2 1.75px solid;
  padding: 10px;
}

/* Extras */
.div5 {
  grid-column-start: 5;
  grid-row-start: 4;
  width: 100px;
}

.tama img {
  padding: 5px;
  width: 95%;
  margin: 10px 0px 0px -3px;
}

.angel img {
  width: 100%;
}

.blinkies {
  border: #6296D2 1.75px solid;
}

/* end main */

/* ABOUT */


.about-parent {
  display: grid;
  grid-template-columns: 175px 25px 150px 200px 200px 200px;
  grid-template-rows: 300px 375px;
  gap: 15px;


}

.thebasics {
  grid-column: span 2 / span 2;

}

.mefr {
  grid-column-start: 3;
  padding: 15px;
  scrollbar-width: thin;
}

.favorites {
  grid-column: span 3 / span 3;
  grid-row: span 2 / span 2;
  grid-column-start: 4;

}

.media-row {
  display: flex;
  padding: 5px 0px 10px 0px;

}

.fav-media {
  height: 140px;
  width: 90px;
  padding: 0px 15px 0px 0px;
}


.data-tooltip img {
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -ms-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;

  vertical-align: middle;
}

.data-tooltip img:hover {
  -webkit-transform: scale(1.5);
  /* Safari and Chrome */
  -moz-transform: scale(1.5);
  /* Firefox */
  -ms-transform: scale(1.5);
  /* IE 9 */
  -o-transform: scale(1.5);
  /* Opera */
  transform: scale(1.5);
}

.fav-gif {
  height: 140px;
  width: 90px;
  padding: 0px 15px 0px 0px;
}

.likes {
  grid-row-start: 2;


}

.cats {
  grid-column: span 2 / span 2;
  grid-row-start: 2;
}

.cat-img img {
  width: 170px;
}

/* end about */

/* LEFT */
.bluesidebars {
  margin: 0px 30px 0px 0px;
}

.leftSidebar {
  grid-area: leftSidebar;
  height: 100%;
  display: flex;
}

.pfp {
  z-index: -1;
  width: 90%;
  margin: 40px 0px -10px -27px;
}

#statuscafe {
  padding: 0px;
}

#statuscafe-username {
  margin: -51px 0px 0px 20px;
  font-family: "000webfont", sans-serif;
  font-size: 18px;
  color: #2c3d4f
}

#statuscafe-username a {
  margin-bottom: .5em;
  font-family: "000webfont", sans-serif;
  font-size: 18px;
  color: #2c3d4f
}

#statuscafe-content {
  margin: -1px 0px 0px 20px;
  font-family: "Pixel Operator", sans-serif;
  font-size: 13px;
  color: #2c3d4f
}

.statustext {
  margin-bottom: 25px;
}

.asidebox {
  border: #6296D2 1.75px solid;
  width: 195px;
  margin: 15px 0px 0px 0px;
}

.right {
  grid-area: rightSidebar;
  width: 100%;
}

.navlabel {
  width: 40%;
}

.info-row {
  display: flex;
  align-items: flex-start;
  margin: 0px 3px 3px 5px;
}

.info-label {
  background-color: #6296D2;
  font-family: "000webfont", sans-serif;
  font-size: 16px;
  padding: 3px 10px 12px 10px;
  margin: 10px 0px 0px 0px;
  width: 100px;
  height: 100px;
  border: #6296D2 1.75px solid;
  max-height: 10px;
  color: #fff;
}

.info-value {
  background-color: #fff;
  font-family: "Pixel Operator", sans-serif;
  font-size: 13px;
  margin: 10px 5px 3px 0px;
  padding: 5px 10px 5px 10px;
  border: #6296D2 1.75px solid;
  width: 80%;
}

.latest {
  padding: 15px 10px 10px 0px;
}

.marquee {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  width: 950px;
  ;
}

.marquee__item {
  animation-duration: 25s;
  animation-iteration-count: infinite;
  animation-name: marquee-content;
  animation-timing-function: linear;
  padding: 5px 15px 5px 0px;
}

.marquee:hover .marquee__item {
  animation-play-state: paused;
}

@keyframes marquee-content {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(-100%);
  }
}

.marquee img {
  height: 50px;
}

/* zoom */
.img-hover-zoom {
  height: auto;
  overflow: visible;
}

.img-hover-zoom img {
  transition: transform .5s ease;
}

.img-hover-zoom:hover img {
  transform: scale(1.15);
}

.img-hover-zoom2 {
  display: flex;
  align-items: stretch;
  height: auto;
  overflow: visible;
}

.img-hover-zoom2 img {
  margin: 0px;
  transition: transform .5s ease;
}

.img-hover-zoom2 img:hover,
.img-hover-zoom2 img:focus {
  transform: scale(1.75);
}