html, body {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
}

body {
  background-image: url("img/bg.png");
  background-size: cover;
  margin: 0;
  font-family: baskerville;
}

@font-face {
  font-family: appears;
  src: url("Appears-Regular.otf");
}
@font-face {
  font-family: baskerville;
  src: url("LibreBaskerville-Regular.ttf");
}
#header {
  width: 100%;
  height: 3vh;
  position: fixed;
  z-index: 1000;
  margin-top: 15px;
}
#header img {
  float: left;
  height: 100%;
  margin-left: 25px;
}
#header .hamburger {
  float: right;
  margin-right: 50px;
  padding: 0;
  margin-top: 20px;
}

#menu {
  position: fixed;
  top: 0px;
  right: -100%;
  height: 100%;
  background: #f4f2ef;
  transition: all 0.3s;
  z-index: 500;
  padding: 100px 50px;
  text-align: center;
}
#menu.open {
  right: 0%;
}
#menu a {
  text-decoration: none;
  color: black;
  font-size: 3vh;
  margin: 3vh 0;
  display: block;
  transition: all 0.25s;
}
#menu a:hover {
  color: rgba(0, 0, 0, 0.5);
}
#menu .menu-spacer {
  width: 70%;
  height: 2px;
  background: black;
  margin: 0 auto;
}
#menu i {
  font-size: 3vh;
  margin-top: 3vh;
}

.view {
  width: 100%;
  height: calc(100% - 10vh);
  position: fixed;
  top: 10vh;
  left: 0px;
}

#view1 {
  text-align: center;
  display: none;
}
#view1 .title-container {
  min-height: 7vh;
}
#view1 .tagline1 {
  min-height: 5vh;
  font-size: 1.75vh;
  margin: 1vh 15vw;
}
#view1 #card-intro {
  height: 35vh;
}
#view1 #card-intro img {
  height: 100%;
}
#view1 .button-container .btn {
  margin: 1vh auto;
  height: 5vh;
  font-size: 1.5vh;
  font-weight: 400;
  font-family: "Baskerville", "serif";
}
#view1.shown {
  display: block;
}

.btn {
  padding: 10px 0;
  width: 300px;
  border: 3px solid black;
}

.btn-black {
  background: black;
  color: #eee;
  border: none;
}

.btn-transparent {
  background: transparent;
  color: black;
}

.stylized-title {
  font-family: appears;
  font-size: 5vh;
  margin: 1.5vh auto;
  font-weight: 400;
}

#view2 {
  opacity: 0;
  transition: all 0.3s;
  display: flex;
  top: 100vh;
  z-index: -1000;
}
#view2 #choose-a-card {
  text-align: center;
  font-size: 3vh;
  font-family: appears;
  width: 100%;
  transition: all 0.3s;
  position: fixed;
  top: -100vh;
}
#view2.shown {
  opacity: 1;
  z-index: 100;
}
#view2.shown #choose-a-card {
  top: 10vh;
}
#view2.shown #cards-container {
  top: 15vh;
}

#cards-container {
  position: fixed;
  width: 80%;
  height: 70vh;
  top: 100vh;
  left: 10%;
  display: flex;
  flex-wrap: wrap;
  align-content: space-around;
  justify-content: space-evenly;
  transition: all 0.3s;
}

.card-outer {
  align-items: center;
  display: flex;
  perspective: 1000px;
  transition: all 0.8s;
  transform-style: preserve-3d;
  height: 100%;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: all 0.8s;
  transform-style: preserve-3d;
}

.flippy .card-inner {
  transform: rotateY(180deg);
}

.card-front, .card-back {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.card-front {
  transform: rotateY(180deg);
  position: fixed;
  transition: all 3s;
  transform-style: preserve-3d;
  width: 100%;
}
.card-front img {
  width: 100%;
}

.card-front.flippy {
  position: fixed;
  z-index: 100;
  transform: rotateY(0deg);
  margin: auto;
}

.card-back {
  position: absolute;
  height: 100%;
}

.absolute {
  position: absolute;
}

#view3 {
  opacity: 0;
  position: fixed;
  top: 200vh;
  transition: opacity 0.6s;
  z-index: -1000;
}
#view3 #card-title,
#view3 #card-description {
  position: fixed;
  left: 100%;
  transition: all 0.6s;
}
#view3 #card-title {
  font-weight: bold;
}
#view3.shown {
  opacity: 1;
  z-index: 100;
  top: 10vh;
}

@media (orientation: landscape) {
  .card-outer {
    --width: calc(100% / 13);
    flex-basis: var(--width);
    height: 16.6666666667%;
  }
  .card-outer img {
    width: 100%;
  }

  #view3.shown #card-title,
#view3.shown #card-description {
    left: 51%;
    width: 44%;
    font-size: 1.75vw;
  }
  #view3.shown #card-description {
    padding-top: 3vw;
  }
}
@media (orientation: portrait) {
  .card-outer {
    --width: calc(100% / 6);
    flex-basis: var(--width);
    height: 7.6923076923%;
  }
  .card-outer img {
    height: 100%;
  }

  #view3.shown #card-title,
#view3.shown #card-description {
    left: 52%;
    width: 40%;
    font-size: 27px;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
  }
  #view3.shown #card-description {
    margin-top: 40px;
  }
}
#link-container {
  width: 100%;
  position: fixed;
  top: 65vh;

 
  text-align: center;
}
#link-container h2 {
  font-family: appears;
}
#link-container input,
#link-container .button {
  border: 2px solid black;
  padding: 5px 10px;
  color: black;
}
#link-container .button {
  background: black;
  color: white;
}
#link-container div {
  text-align: center;
}
#link-container #spotify-link {
  display: inline-block;
  width: 60%;
  line-height: 5vh;
  background: black;
  color: white;
  text-decoration: none;
  border: 3px solid black;
  margin-bottom: 2.5vh;
  font-size: 1.5vh;
  font-family: baskerville;
}
#link-container #pull-again {
  display: inline-block;
  width: 60%;
  background: transparent;
  color: black;
  text-decoration: none;
  border: 3px solid black;
  font-size: 1.5vh;
  line-height: 5vh;
  font-family: baskerville;
  margin-bottom: 2.5vh;

}


/*# sourceMappingURL=styles.css.map */
