/* 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-color: black;
  color: black;
  font-family: Verdana;
}

.window {
  margin: 10% 30% 10% 30%;
}

.bar {
  background-color: #b50e78, 0.25;
  border: 3px solid #b50e78;
  margin-bottom: 0px;
  transition: opacity 1s, translate 1s;
  text-align: center;
  opacity: 1;
  color: white;
  font-size: 22px;
  font-family: 'quicksand', Georgia;
  padding: 1px 8px 1px 8px;
  translate: 0 0;
  @starting-style {
    opacity: 0;
    translate: 0px 10px;
  }
}



.welcomebar {
  margin: 0 auto;
  margin-bottom: -20px;
}


.center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
  background-color: #ff00a1, 0.25;
  border: 4px solid #b50e78;
  padding: 20px 30px 20px 30px;
  color: #ffdbf2;
  font-family: 'quicksand', Georgia;
  font-size: 14px;
  transition: opacity 1s, translate 1s;
  opacity: 1;
  translate: 0 0;
  @starting-style {
    opacity: 0;
    translate: 0px 10px;
  }
}

.center .bullshit {
  text-align: center;
  font-size: 11px;
  margin: 0;
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.buttons {
  margin: auto;
  width: auto;
  display: flex;
}

.buttons a {
  display: block;
  padding: 8px 16px 8px 16px;
  color: #B50E14;
}

.buttons a:hover {
  color: #B5470E;
}

.music {
  padding: 3px;
  text-align: center;
  box-sizing: border-box;
  left: -60px;
  bottom: -100px;
  font-size: 15px;
  font-family: 'quicksand', Georgia;
  position: absolute;
  border: 3px solid #b50e78;
  z-index: 4; 
  color: #ffdbf2;
  background: black;
  width: 180px;
  height: 150px;
}

.musicbar {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: absolute;
  left: -60px; 
  bottom: 50px;
  background: black;
  border: 3px solid #b50e78;
  z-index: 5;
  width: 174px;
  height: 22px;
}

.albumname {
  width: 100%;
  height: 33px;
  display: flex;
  --gap: 20px;
  gap: var(--gap);
  overflow: hidden;
}

.albumname ul {
  align-items: center;
  min-width: 100%;
  flex-shrink: 0;
  justify-content: space-between;;
  list-style: none;
  animation: scroll-left 5s linear infinite;
  display: flex;
  gap: var(--gap);
}

@keyframes scroll-left {
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}
.album {
  height: 100px;
  width: 100px;
  display: block;
  margin: auto;
  margin-top: 3px;
}

.images {
  margin: auto;
  text-align: center;
  whitespace: nowrap;
  word-wrap: break-word;
  height: 66px;
  }

.kitty {
   margin: auto;
   background-color: transparent;
   border: 0px;
   cursor: pointer;
}
.kitty:active { 
  transform: translateY(-10px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  transform: scale(0.97);
  transition: all 0.01s ease-out;
}
.kitty:after {
  transform: scale(1);
  transition: all 0.01s ease-out;
}

.kittybar {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  left: 95%;
  bottom: 62%;
  font-size: 15px;
  font-family: 'quicksand', Georgia;
  position: absolute;
  border: 3px solid #b50e78;; 
  background: black;
  width: 194px;
  height: 24px;
}

.kittywindow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: absolute;
  left: 95%;
  bottom: -15%;
  background: black;
  border: 3px solid #b50e78;
  width: 194px;
  height: 194px;
}

.gaybar {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  left: 95%;
  bottom: 62%;
  font-size: 15px;
  font-family: 'quicksand', Georgia;
  position: absolute;
  border: 3px solid #b50e78;; 
  background: black;
  width: 194px;
  height: 24px;
}

.gaywindow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: absolute;
  left: 95%;
  bottom: -15%;
  background: black;
  border: 3px solid #b50e78;
  width: 194px;
  height: 194px;
}