/* ----------------------------------------------------
   Main Styles for "shedlabsrecords.com"
   Copyright Shedlabs Records 2023, All Rights Reserved.

   Author: Jonathon Pratt
   URL: www.jonathonpratt.com
---------------------------------------------------- */

a {
  all: unset;
  cursor: pointer;
}

.debug {
  border: 1px solid red;
}

* {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: none;
}

body {
  margin: 0;
  clear: both;
  padding: 0;
  width: 100svw;
  height: 100svh;
  min-height: 200px;
  background-color: black;
  overflow: hidden;
}

#pageWrap {
  width: 100svw;
  height: 100%;
  min-height: 200px;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.pageWrap {
  animation-name: bgIntro;
  animation-duration: 3s;
  animation-delay: 5s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-play-state: paused;

  opacity: 1;
}

.pageChange {
  transition: ease 1s;
  position: fixed;
  top: 15px;
  left: 15px;
  display: none;
  min-height: 50px !important;
  max-height: 150px !important;
  width: 400px !important;
  border: 1px solid red;
}

#nebulaLogo {
  background: url("../img/nebulaLogo.png") no-repeat center;
  background-size: contain;
  width: 50%;
  min-width: 300px;
  max-height: 75vh;
  aspect-ratio: 1/1;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;

  animation-name: nebulaIntro, nebula;
  animation-duration: 3s, 45s;
  animation-delay: 3s, 5s;
  animation-iteration-count: 1, infinite;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
  transition: all 0s linear;

  opacity: 0;
  z-index: 3 !important;
}

#shedlabsRecords {
  background: url("../img/shedlabsRecords.png") no-repeat center;
  background-size: contain;
  width: 75%;
  min-width: 300px;
  min-height: 100px;
  max-height: 75vh;
  margin: 0;
  padding: 0;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;

  transition: ease 1s;

  animation-name: logo;
  animation-duration: 12s;
  animation-delay: 9s;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;

  opacity: 0;
  z-index: 4 !important;
}

/* Footer ---------------------------------------------------------------*/

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: end;
}

#copy {
  padding: 5px;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 15px 0 0 0;
}

.copy {
  color: white;
  font-size: 10pt;
  padding: 0;
  margin: 0;
}
