
@font-face {
    font-family: 'upheaval_tt_brkregular';
    src: url('../fonts/upheavtt-webfont.woff2') format('woff2'),
         url('../fonts/upheavtt-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

body {
  margin: 0;
}

.title-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 150px;
  margin: 0;
}

.title {
  font-family: "upheaval_tt_brkregular", sans-serif;
  font-size: clamp(2rem, 10vw, 9rem);
  margin: 0;
  z-index: 0;
  font-weight: bold;
  background: linear-gradient(#ffa9a1 60%, #32358a 100%);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text; /* For Safari */
}

.outline {
  position: absolute;
  color: rgb(69, 40, 60);
  margin: 0;
  z-index: -1;
  text-shadow:
     1px -1px 0 rgb(69, 40, 60);
  left: 50%;
  transform: translate(-48%, -50%);
}

.bookmark-text {
  opacity: 0;
  visibility: hidden;
  position: absolute; /* Position it absolutely */
  bottom: 100%; /* Position it above the image */
  left: 50%; /* Center it horizontally */
  transform: translateX(-50%); /* Adjust for centering */
  color: #ffa9a1;
  background-color: rgba(69, 40, 60, 0.7);
  padding: 5px; /* Padding around the text */
  border-style: solid;
  border-color: #ffa9a1;
  border-width: 2px;
  border-radius: 5px; /* Rounded corners */
  z-index: 5; /* Ensure it appears above other elements */
}

.about-text {
  font-family: "upheaval_tt_brkregular", sans-serif;
  font-size: clamp(1rem, 5vw,5rem);
  color: rgb(60, 53, 53);
  padding: 0;
}

.about-text p {
  margin: 0;
}

.container {
  overflow: hidden;
}

.sliding-background {
  background: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/uni.png") repeat; 
  height: 2160px;
  width: 5760px;
  z-index: -2;
  position: fixed;
  animation: slide 60s linear infinite;
}

@keyframes slide {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-1920px, 0, 0); /* The image width */
  }
}

.snow-background {
  
  top: 0;
  left: 0;
  overflow: hidden;
  height: 100%;
  width: 100%;
  z-index: -1;
  position: fixed;
}

.snow-background::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background-image: linear-gradient( rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("../images/snowfall.gif");
  background-position: center;
  transform: translate(-50%, -50%) rotate(30deg);
  z-index: -1;
}

.header-container {
  position: sticky;
  overflow: hidden;
  background-color: rgba(132, 124, 240, 0.9);
  border: 10px solid rgb(69, 40, 60);
  box-sizing: border-box;
  margin-top: 2%;
  margin-left: 20%;
  margin-right: 20%;
  margin-bottom: 2%;
  border-radius: 25px;
  padding: 5px;
}

.header-nav {
  display: flex;
  justify-content: center;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.header-nav a {
  margin: 0 25px;
  margin-top: auto;
  margin-bottom: auto;
  padding-left: 5px;
  padding-right: 5px;
  font-family: "upheaval_tt_brkregular", sans-serif;
  text-decoration: none;
  background-color: #ff8879;
  border: 6px solid rgb(69, 40, 60);
  border-radius: 5px;
  font-size: 20px;
}

.main-container {
  background-color: rgba(132, 124, 240, 0.9);
  border: 10px solid rgb(69, 40, 60);
  box-sizing: border-box;
  margin-top: 2%;
  margin-left: 25%;
  margin-right: 25%;
  border-radius: 25px;
  
}

.sidenav {
  height: 100%;
  width: 200px;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-image: url("../images/sidenav.png");
  overflow-x: hidden;
  padding-top: 20px;
}

/* Custom scrollbar for Firefox */
.sidenav {
  scrollbar-width: auto; /* Options: auto, thin */
  scrollbar-color: #ff8879 #6d3601; /* thumb color, track color */
}

/* For WebKit browsers (Chrome, Safari) */
.sidenav::-webkit-scrollbar {
  width: 12px; /* Width of the scrollbar */
}

.sidenav::-webkit-scrollbar-track {
  background: #6d3601; /* Track color */
}

.sidenav::-webkit-scrollbar-thumb {
  background-color: rgb(132, 124, 240); /* Thumb color */
  border-radius: 10px; /* Rounded corners */
}
  
.sidenav a {
  padding-top: 3px;
  padding-bottom: 3px;
  text-align: center;
  margin-right: 8px;
  text-decoration: none;
  font-family: "upheaval_tt_brkregular", sans-serif;
  font-size: 30px;
  color:rgb(77, 58, 54);
  background-color: #ff8879;
  border: 6px solid rgb(69, 40, 60);
  border-radius: 5px;
  line-height: 1.5;

  display: block;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.apples img:hover {
  /* Start the shake animation and make the animation last for 0.5 seconds */
  animation: shake 0.5s;

  /* When the animation is finished, start again */
  animation-iteration-count: infinite;
}

@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}

.sidenav-r {
  height: 100%;
  width: 200px;
  position: fixed;
  z-index: -1;
  top: 0;
  right: 0;
  overflow-x: hidden;
  padding-top: 20px;
}

.sidenav-r::before {
  content: "";
  height: 100%;
  width: 200px;
  position: fixed;
  z-index: -1;
  top: 0;
  right: 0;
  background-image: url("../images/sidenav.png");
  overflow-x: hidden;
  padding-top: 20px;
  transform: scaleX(-1);
}

/* Custom scrollbar for Firefox */
.sidenav-r {
  scrollbar-width: auto; /* Options: auto, thin */
  scrollbar-color: #ff8879 #6d3601; /* thumb color, track color */
}

/* For WebKit browsers (Chrome, Safari) */
.sidenav-r::-webkit-scrollbar {
  width: 12px; /* Width of the scrollbar */
}

.sidenav-r::-webkit-scrollbar-track {
  background: #6d3601; /* Track color */
}

.sidenav-r::-webkit-scrollbar-thumb {
  background-color: rgb(132, 124, 240); /* Thumb color */
  border-radius: 10px; /* Rounded corners */
}
  
.sidenav-r a {
  padding-top: 3px;
  padding-bottom: 3px;
  text-align: center;
  margin-right: 8px;
  text-decoration: none;
  font-family: "upheaval_tt_brkregular", sans-serif;
  font-size: 30px;
  color:rgb(77, 58, 54);
  background-color: #ff8879;
  border: 6px solid rgb(69, 40, 60);
  border-radius: 5px;
  line-height: 1.5;

  display: block;
}

.sidenav-r a:hover {
  color: #f1f1f1;
}

.main {
  padding: 5px 5px 5px 5px;
}

.info-flex {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.info-bm {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-style: solid;
  border-color: rgb(69, 40, 60);
  border-width: 5px;
  border-radius: 5px;
  background-color: rgba(255, 136, 121, 0.2);
  width: 100%;
  height: 50%;
  margin: 5px;
}

.bio-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-style: solid;
  border-color: rgb(69, 40, 60);
  border-width: 5px;
  border-radius: 5px;
  background-color: rgba(255, 136, 121, 0.2);
  width: 40%;
  margin: 5px;
}

.bio-wrapper p {
  margin: 0;
}

.bio-header {
  font-family: "upheaval_tt_brkregular", sans-serif;
  font-size: clamp(1rem, 1vw,2rem);
  text-align: center;
  padding: 0;
  margin: 0;
}

.bio-header img {
  display: block;
  margin: 0 auto;
}

.info-right-flex {
  display: flex;
  flex-direction: column;
  width: 50%;
}

.info-right-2-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-style: solid;
  border-color: rgb(69, 40, 60);
  border-width: 5px;
  border-radius: 5px;
  background-color: rgba(255, 136, 121, 0.2);
  width: 100%;
  height: 50%;
  margin: 5px;
}

.audio-player {
  display: flex;
  flex-direction: column;
  width: 80%;
  height: 20%;
  background-color: rgba(0, 0, 0, 0.2);
  border-style: solid;
  border-color: rgb(69, 40, 60);
  border-width: 2px;
  margin: 5px;
}

.audio-info {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 2px;
  margin: 0;
}

.audio-info p {
  margin-left: 5px;
  margin-right: 5px;
}

.audio-controls {
  display: flex;
  justify-content: center;
  flex-direction: row;
  margin-bottom: 10px;
}

.audio-controls button {
  background-color: rgba(0, 0, 0, 0.2);
  border-style: solid;
  border-color: rgb(69, 40, 60);
  border-width: 2px;
  margin-left: 10%;
  margin-right: 10%;
  cursor: pointer;
}

.audio-bar {

  width: 100%;
}

.progress-bar {
  width: 100%;
  cursor: pointer;
}

.featured-album-header {
  font-family: "upheaval_tt_brkregular", sans-serif;
  font-size: clamp(1rem, 1vw,2rem);
  text-align: center;
  padding: 0;
}

.featured-albums {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.track-title {
  font-family: "upheaval_tt_brkregular", sans-serif;
  margin: 0;
}

.track-artist {
  font-family: "upheaval_tt_brkregular", sans-serif;
  margin: 0;
}

.album {
  width: 50%;
}

.album-song {
  font-family: "upheaval_tt_brkregular", sans-serif;
  margin: 0;
}

.album-flavor {
  
}

.pixels {
  float: left;
  width: 49%;
  padding-top: 1px;
  margin-top: 15px;
}

.pixels img {
  max-width: 100%;
  max-height: 100%;
  vertical-align: bottom;
}

.pixels-table::after {
  content: "";
  clear: both;
  display: table;
  position: relative;
}

.flip {
  -webkit-transform: scaleX(-1);
   transform: scaleX(-1);
}

.bookmark-table {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.bookmark {
  width: 88px;
  height: 31px;
  padding-left: 2px;
  position: relative;
}

.bookmark img {
  width: 100%;
  height: auto;
}

.bookmark:hover .bookmark-text {
  opacity: 1;
  visibility: visible;
}

.bookmark-table::after {
  content: "";
  clear: both;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.bookmark-wrapper {
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  outline-style: double;
  outline-color: #6d3601;
}

.divider {
  width: 100%;
  height: 5px;
  margin: 0;
  background-color: rgb(207, 116, 56);
}

.space {
  padding: 50px;
}

.green {
  color:rgb(130, 168, 163);
}

.bottom {
  font-size: 110%;
  background-color:rgb(207, 116, 56);
}

.footer-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.footer {
  float: left;
  width: 40%;
  padding: 5px;
}

.footer img {
  max-width: 100%;
  max-height: 100%;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

.gbg {
  background-image: url("../images/gbg.png"), linear-gradient(rgba(174, 186, 226, 0.3), rgb(161, 121, 180, 0.3));
  background-repeat: no-repeat;
  background-size: 100%;
  position: relative;
}

.sig {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.sig img {
  width: 100%;
}

.fleur img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.wip-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.wip {
  border-style: solid;
  border-color: rgb(69, 40, 60);
  border-width: 5px;
  border-radius: 5px;
  background-color: rgba(255, 136, 121, 0.2);
  width: 50%;
}

.wip-flank-l {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 25%;
}

.wip-flank-l img {
  width: 90%;
}

.wip-flank-r {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 25%;
}

.wip-flank-r img {
  width: 90%;
}

.wip-flip {
  transform: scaleX(-1);
}

.wip-header {
  font-family: "upheaval_tt_brkregular", sans-serif;
  font-size: clamp(1rem, 1vw,2rem);
  text-align: center;
  padding: 0;
}

.wip-subheader {
  
  text-align: center;
}

.wip-content {
  text-align: left;
}

.wip-cat {
  margin: 0px;
  margin-top: auto;
  transform: 
      translateY(12%)
      translateX(15%);
}

.wip-container {
  display: flex;
  flex-direction: column;
}