/* 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." */

body {
  background-image: url("https://kyuunkurarin.neocities.org/moebg1.jpeg");
  background-size: 100%;
  background-color: white;
  color: black;
  font-family: Verdana;
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;

  background-image: url("https://kyuunkurarin.neocities.org/pinkstartile.webp");
  border-bottom: 2px solid black;
  box-shadow: 0 2px black;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0 10px;
  font-weight: bold;
  z-index: 9999;  
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.marquee-content {
  display: inline-block;
  animation: scroll 2s linear infinite;
}

.marquee-content span {
  padding-right: 6px;
}

@keyframes scroll {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

body {
  margin-top: 30px;
}

 .window {
  position: absolute;
  width: 450px;
  background: #c0c0c0;
  border: 2px solid black;
  box-shadow: 4px 4px black;
  /* resize: both; */
  overflow: auto;
}

.title-bar {
  background-image: url("https://kyuunkurarin.neocities.org/moetangif.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 5px;
  font-weight: bold;
}

.content {
  padding: 10px;
  background: white;
}

.kyuun-kurarin {
    background: linear-gradient(45deg, red, orange, yellow, green, blue, indigo, violet);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
}