:root {
  --scale: 1.5;
  --x: 1.5px;
  --y: 1.5px;
  --startx: 1.5px;
  --starty: 1.5px;
}


/* basics */
div {
  position: relative;
  display: inline;
}

.imtip {
  position: absolute;
  bottom: 0;
  right: 0;
}

.find {
  transition: 0.5s;
}

h1 {
  text-align: center;
}

/* image centering */
.img {
  position: fixed;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 5;
}

/* Hill on index.html */
.hill {
  position: fixed;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 0;
}

.background {
  position: fixed;
  z-index: 1;
}

/* Used for Logo on index.html only */
.center {
  position: fixed;
  margin-left: 50%;
  z-index: 100;
  transform: translate(-50%, 0%);
}

/* Logos on mobile */
.mobilelogo {
  z-index: 100;
}

/* Door on index.html */
.door {

  position: fixed;
  z-index: 3;

}

/* Font */
@font-face {
  font-family: BabyDoll;
  src: url(assets/Baby\ Doll.otf);
}

.font {

  font-family: BabyDoll;
  color: white;
  font-size: large;

}

/* Container for Text Box */
.text-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Text Boxes */
.text-box {
  border-radius: 30px;
  border-style: dotted;
  padding: 20px;
  width: 700px;
  font-family: BabyDoll;
  font-size: 20px;
  z-index: 100;
  margin-bottom: 30px;
  transition: all 1s ease;
}

.text-box:hover {
  transition: all 1s ease;
  border-radius: 10px;
  scale: 1.045;
  font-size: 20px;
}

.text-content {
  display: flex;


}

/* Mobile List */
.mobilelist {
  font-family: BabyDoll;
  font-size: xx-large;
}

/* Audio Wrapper? */
#audioWrapper {
  top: 50vh;
  display: block;
}

/* Audio Tag */
audio {
  top: 50vh;
  width: 100%;
  z-index: 500
}

/* Captions for Albums on music.html */
.album text{
  text-align: center;
  color: #000;
  text-decoration: none;
}

/* Captions for Movies on movies.html*/
.movieposters text{
  text-align: center;
  color: #000;
  text-decoration: none;
}

.hidden {
  display: none;
  opacity: 0;
  font-family: babydoll;
  transition: all 1s ease;
  text-decoration: none;
}

.album:hover + .hidden{
  transition: all 1s ease;
  opacity: 100;
  display: block;
}

.movieposters:hover + .hidden{
  transition: all 1s ease;
  opacity: 100;
  display: block;
}

/* Images for Albums on music.html */
.album img {
  transform: rotateY(20deg) skewY(-5deg);
  transition: all 1s ease;
  height: 200px; width: 200px;
  box-shadow: -6px 6px 1px 5px rgba(0, 0, 0, 0.25);
}

.album:hover img {
  opacity: 0.9;
  transition: all 1s ease;
  transform: rotateY(0deg) skewY(0deg);
  box-shadow: 0px 0px 1px 2px rgba(0, 0, 0, 0.15);
  background-color: transparent;
}

/* Menu Caption */
.section-heading {
  font-family: BabyDoll;
  font-size: xx-large;
}

/* Grid Container */
.card-container {
  display: grid;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  padding: 20px;
  border-radius: 10px;
  border-style: dotted;
  transition: all 1s ease;
  width: 300px;
}

/* Captioning on Grid */
.card-container:hover {
  text-decoration: none;
  padding: 30px;
  border-radius: 10px;
  border-style: dotted;
  width: 400px;
  transition: all 1s ease;
}

/* Grid contents */
.card {
  padding-top: 30px;
  padding-bottom: 30px;
  font-family: babydoll;
  text-decoration: none;
}

/* Movie Posters */
.movieposters img {
  transform: rotateY(20deg) skewY(-5deg);
  transition: all 1s ease;
  height: 297px;
  width: 210px;
  box-shadow: -6px 6px 1px 5px rgba(0, 0, 0, 0.25);
}

.movieposters:hover img {
  transform: rotateY(0deg) skewY(0deg);
  transition: all 1s ease;
  height: 297px;
  width: 210px;
  box-shadow: 0px 0px 1px 2px rgba(0, 0, 0, 0.15);
}

