@font-face {
  font-family: "FsHakumoRegular";
  src: url("FsHakumoRegular-V49Ky.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "SeratoninRegular";
  src: url("SeratoninRegular-q2aRr.otf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "PixeltaRegular";
  src: url("PixeltaRegular-lxoDw.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}


body {
  background-color: black;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("photos/454d5955af24347d890a7ac80d2f804b.gif");
  background-repeat: repeat;
  opacity: 0.4;
  pointer-events: none;
  z-index: -1;
}

h1 {
  text-align: center;
  font-family: "SeratoninRegular", sans-serif;
  font-weight: 300;
  letter-spacing: 4px;
  margin: 25px 0 10px;
  font-size: 48px;
   -webkit-font-smoothing: none;
  -moz-osx-font-smoothing: grayscale;

  background: repeating-linear-gradient(
    90deg,
    #ff9fbc 0px,
    #ffc58f 25px,
    #fff08a 50px,
    #aee8ad 75px,
    #91cfff 100px,
    #c5a4ff 125px,
    #ff9fbc 150px
  );

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
   filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.8))
        drop-shadow(0 0 8px rgba(255, 190, 230, 0.6)); /***GLOWING TEXT**/
}

p {
  font-family: "FsHakumoRegular", sans-serif;
  color: white;
  font-weight: 100;
}

/* LAYOUT */

.site {
  width: 900px;
  margin: 20px auto;
}

.header {
  text-align: center;
  padding: 20px;
}

.nav {
  padding: 8px;
  text-align: center;
  border-top: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
}

.nav a {
  margin: 0 12px;
  background: repeating-linear-gradient(
    90deg,
    #ff9fbc 0px,
    #ffc58f 25px,
    #fff08a 50px,
    #aee8ad 75px,
    #91cfff 100px,
    #c5a4ff 125px,
    #ff9fbc 150px
  );

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
   filter: drop-shadow(0 0 5px rgba(255, 220, 245, 0.7)); /***GLOWING TEXT**/
}

.columns {
  display: grid;
  grid-template-columns: 1fr 240px;
  
}

.main {
  padding: 10px;
  
}

.sidebar {
  padding: 10px;
  border-left: 1px solid #aaa;
      font-family: "FsHakumoRegular", sans-serif;

}

.box {
  border: 1px solid #aaa;
  margin-bottom: 10px;
}

.box-title {
  padding: 5px 8px;
  border-bottom: 1px solid #aaa;
  font-weight: bold;
  color: white;
  background: repeating-linear-gradient(
    90deg,
    #ff9fbc 0px,
    #ffc58f 25px,
    #fff08a 50px,
    #aee8ad 75px,
    #91cfff 100px,
    #c5a4ff 125px,
    #ff9fbc 150px
  );
  
}

.box-content {
  padding: 10px;
  
}

.photo-text {
  display: flex;
  align-items: center;
  gap: 15px;
}

.photo-text img {
  width: 150px;
  height: auto;
  flex-shrink: 0;
}

.small-boxes {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
}
.small-boxes .box-content::-webkit-scrollbar {
  width: 6px;
}

.small-boxes .box-content::-webkit-scrollbar-thumb {
  background: #c5a4ff;
}

.small-boxes .box-content::-webkit-scrollbar-track {
  background: transparent;
}
.sidebar-link {
  background: linear-gradient(
   90deg,
    #ff9fbc 0px,
    #ffc58f 25px,
    #fff08a 50px,
    #aee8ad 75px,
    #91cfff 100px,
    #c5a4ff 125px,
    #ff9fbc 150px
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  text-decoration: none;
  font-weight: bold;
}

.sidebar-link:hover {
  text-decoration: underline;
}

.footer {
  padding: 15px;
  text-align: center;
  border-top: 1px solid #aaa;
}
.blinkies {
  margin-top: 10px;
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.5);

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.blinkies img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
}