/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
@font-face {
    font-family: 'Shin Go';
    src: url('/fonts/shingo/ShinGoPro-Medium.woff2') format('woff2'),
        url('/fonts/shingo/ShinGoPro-Medium.woff') format('woff'),
        url('/fonts/shingo/ShinGoPro-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
body {
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.7) 0px,
      rgba(0,0,0,0.7) 100px,
      rgba(0,0,0,0) 200px
    ),
    url('night.gif') no-repeat center center fixed;
  overflow: hidden;
  background-size: cover;
  color: black;
  font-family: Verdana;
}
.wrapper {
  font-family: monospace;
  padding: 3rem 0px;
  color: white;
  text-shadow: 2px 2px 2px #000000;
  font-size: 2.5rem;
}
.banner {
  display: flex;
  gap: 4.8rem;
}
.vice {
  z-index: 3;
  margin-top: -300px;
}
.about {
  position: fixed;
  bottom: 50vh;
  right: 700px;
  border-radius: 50px;
  background: rgba(0,0,0,0.5);
  color: black;
  width: 400px;
  font-size: 3rem;
  font-family: "Shin Go";
  text-align: center;
}
.yt {
  position: fixed;
  bottom: 25vh;
  right: 700px;
  border-radius: 50px;
  background: rgba(0,0,0,0.5);
  color: black;
  width: 400px;
  font-size: 3rem;
  font-family: "Shin Go";
  text-align: center;
}
.archive {
  position: fixed;
  bottom: 25vh;
  right: 80px;
  border-radius: 50px;
  background: rgba(0,0,0,0.5);
  color: black;
  width: 600px;
  height: 420px;
  font-size: 10rem;
  font-family: "Shin Go";
}
.about a {
  color: white;
}
.about a:hover {
  color: #4A90E2;
}
.yt a {
  color: white;
}
.yt a:hover {
  color: #4A90E2;
}
.corner-box {
  position: fixed; /* Locks the element to the browser window */
  bottom: 40px;    /* Distance from the bottom edge */
  right: 10px;     /* Distance from the right edge */
  z-index: 1000;   /* Ensures it stays on top of other content */
}