body {
  margin: 1.5em;
  font-family: "Poppins", sans-serif;
  color: #039191;
  background-color: rgb(0, 0, 0);
}

a {
  text-decoration: none;
  font-size: 1.3rem;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/background_studio6.png");
  background-size: cover;
  background-position-x: 50%;
  background-position-y: 20%;
  width: 100%;
  min-height: 15em;
  z-index: -1;
}

/* //Main Hero Image
.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    background: url("../img/background_portfolio.jpg");
    background-size: cover;
    background-position-x: 50%;
    background-position-y: 20%;
    width: 100%;
    height: 100vh;
    z-index: -1;
    animation: introLoad 2s forwards;
    //left: unset;
}
*/
.logo {
  color: #039191;
  font-size: 1.7rem;
  font-weight: bold;
}

nav {
  position: fixed;
  right: 0;
  top: 0;
  background: rgb(0, 0, 0);
  height: 100vh;
  width: 50%;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.5s ease-in-out;
}
nav ul {
  list-style-type: none;
  padding: 0;
  margin-top: 8em;
}
nav ul a {
  color: #039191;
  padding: 0.75em 2em;
  display: block;
}
nav ul a:hover {
  background: rgb(58, 57, 57);
}
nav .close {
  float: right;
  margin: 2em;
  width: 2.5em;
}

header {
  color: #039191;
  display: flex;
  justify-content: space-between;
}
header mark {
  text-stroke: 2px rgb(255, 255, 255);
}
header svg {
  width: 2.3em;
  margin-top: -0.6em;
  cursor: pointer;
  stroke: #039191;
}
header svg path {
  fill: #039191;
}

.subhead {
  font-size: 1.4rem;
  background: black;
}

section.hero {
  animation: moveDown 1s ease-in-out forwards;
  height: 100vh;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: moveDown 1s ease-in-out forwards;
  opacity: 0;
}
section.hero h1 {
  font-size: 1.5rem;
  margin-top: 2em;
  line-height: 3.3rem;
}
section.hero .down-arrow {
  stroke: #039191;
  position: absolute;
  bottom: 8em;
  width: 1em;
  background-position: center;
  animation: moveArrow 1s alternate-reverse infinite;
}
section.hero .down-arrow path {
  fill: #039191;
}

section.about {
  color: #039191;
}

/*

.more-info {
    color: black;

    img {
        //width: 100%;
        object-fit: contain;
        //object-fit: cover;
        height:25em;
        filter: drop-shadow(0 0 0.75rem #039191);
    }

    .feature {
        text-align: center;
    }

    .title {
        font-weight: bold;
        font-size: 1.25rem;
    }

    .desc {
        line-height: 1.5rem;
    }
}

*/
.open-nav {
  transform: translateX(0%);
}

section.soundtrack.section h1 {
  text-align: center;
  font-size: 1.5rem;
  margin-top: 2em;
  line-height: 1em;
  filter: drop-shadow(0 0 0.1rem #039191);
}
section.soundtrack.section h3 {
  text-align: center;
  font-size: 1rem;
  line-height: 3.5em;
  filter: drop-shadow(0 0 0.01rem #039191);
}

section.soundtracks {
  width: 70%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  filter: drop-shadow(0 0 0.25rem #039191);
  grid-gap: 2rem;
  margin: auto;
  margin-bottom: 8em;
}
section.soundtracks .soundtrack {
  text-align: center;
  transition: transform 1s;
}
section.soundtracks .soundtrack:focus, section.soundtracks .soundtrack:hover {
  transform: translateY(-10px);
}
section.soundtracks .soundtrack:focus:before,
section.soundtracks .soundtrack:focus span, section.soundtracks .soundtrack:hover:before,
section.soundtracks .soundtrack:hover span {
  opacity: 1;
}
section.soundtracks .soundtrack:focus:before, section.soundtracks .soundtrack:hover:before {
  top: 50%;
}
section.soundtracks .soundtrack:focus span, section.soundtracks .soundtrack:hover span {
  top: 0;
}
section.soundtracks .soundtrack:focus .title, section.soundtracks .soundtrack:hover .title {
  transition-delay: 0.15s;
}
section.soundtracks .soundtrack:focus .info, section.soundtracks .soundtrack:hover .info {
  transition-delay: 0.25s;
}

/*

Original

section.soundtracks {

    width: 70%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    filter: drop-shadow(0 0 .25rem #039191);
    grid-gap: 2rem; 
    margin: auto;

    .soundtrack {

        transition: transform 1s;

        &:hover {
            transform: translateY(-10px)
        }

        img {
            width: 100%;

            display: block;
			max-width: 100%;
			backface-visibility: hidden;
			-webkit-backface-visibility: hidden;
        }
    }
}

/*
section.soundtracks {

    width: 70%;
    display: grid;
    margin: auto;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    //filter: drop-shadow(0 0 .25rem #039191);
    grid-gap: 2rem; 

    .soundtrack {

        &:before {
			content: '';
			background: linear-gradient(
				to bottom,
				rgba(0,0,0,0) 0%,
				rgba(0,0,0,0.7) 100%
			);
			width: 100%;
			height: 50%;
			opacity: 0;
			position: absolute;
			top: 100%;
			left: 0;
			z-index: 2;
			transition-property: top, opacity;
			transition-duration: $anim-speed;
		}

        img {
            width: 100%;

            //display: block;
			//max-width: 100%;
			//backface-visibility: hidden;
			//-webkit-backface-visibility: hidden;
        }

        .details {
			font-size: 16px;
			padding: 20px;
			color: #fff;
			position: absolute;
			bottom: 0;
			left: 0;
			z-index: 3;

			span {
				display: block;
				opacity: 0;
				position: relative;
				top: 100px;
				transition-property: top, opacity;
				transition-duration: $anim-speed;
				transition-delay: 0s;
			}

			.title {
				line-height: 1;
				font-weight: 600;
				font-size: 18px;
			}

			.info {
				line-height: 1.2;
				margin-top: 5px;
				font-size: 12px;
			}
		}

        transition: transform 1s;

        &:focus,
        &:hover {

            transform: translateY(-10px);

            &:before, 
            span {
				opacity: 1;
			}

			&:before {
				top: 50%;
			}

			span {
				top: 0;
			}

			.title {
				transition-delay: 0.15s;
			}

			.info {
				transition-delay: 0.25s;
			}
        }
    }
}
*/
section.viewall {
  display: flex;
  align-items: center;
  justify-content: center;
}
section.viewall h2 {
  width: 150px;
  text-align: center;
  padding: 0;
  color: #039191;
  padding: 0.75em 2.4em;
}
section.viewall h2:hover {
  background: #c4c4c4;
}

footer {
  display: flex;
  justify-content: center;
  padding-top: 8rem;
  background-color: rgb(255, 255, 255);
}
footer .icons {
  display: flex;
  justify-content: center;
}
footer .icon {
  transition: transform 0.5s;
}
footer .icon:hover {
  transform: translateY(-5px);
}
footer img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 1.5em;
}
footer h6 {
  text-align: center;
}

@media only screen and (min-width: 680px) {
  body {
    margin: 1.5em 4em;
    font-family: "Poppins", sans-serif;
    color: #039191;
    background-color: rgb(0, 0, 0);
  }
  .hero-img {
    position: absolute;
    top: 0;
    left: 0;
    background: url("../img/background_studio6.png");
    background-size: cover;
    width: 100%;
    height: 100vh;
    z-index: -1;
    animation: introLoad 2s forwards;
  }
}
@media only screen and (min-width: 960px) {
  .wrapper {
    margin: 0 auto;
  }
  .menu {
    display: none;
  }
  nav {
    transform: translateX(0);
    position: unset;
    display: block;
    width: auto;
    height: auto;
    background: none;
  }
  nav svg.close {
    display: none;
  }
  nav ul {
    display: flex;
    margin: 0px;
  }
  nav ul a {
    color: #039191;
    padding: 0.5em 1.5em;
    font-size: 1.2rem;
  }
  nav ul a:hover {
    background: none;
    text-decoration: underline;
  }
  .logo {
    color: #039191;
  }
  section.hero {
    text-align: center;
    vertical-align: middle;
    /*
    svg.down-arrow {
        //stroke: #039191;
        //position: unset;
    }
    */
  }
  section.hero h1 {
    text-align: center;
    font-size: 3rem;
    line-height: 3.3em;
    filter: drop-shadow(0 0 0.1rem #039191);
  }
  section.soundtrack.section h1 {
    text-align: center;
    font-size: 3rem;
    line-height: 1em;
    filter: drop-shadow(0 0 0.1rem #039191);
  }
  section.soundtrack.section h3 {
    text-align: center;
    font-size: 1rem;
    line-height: 3.5em;
    filter: drop-shadow(0 0 0.01rem #039191);
  }
  /*

  section.soundtracks {

      width: 70%;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
      filter: drop-shadow(0 0 .25rem #039191);
      grid-gap: 2rem; 
      margin: auto;

      .soundtrack {

          transition: transform 1s;

          &:hover {
              transform: translateY(-10px)
          }

          img {
              width: 100%;
          }
      }
  }
  */
  section.viewall {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  section.viewall h2 {
    width: 100px;
    text-align: center;
    padding: 0;
    color: #039191;
    padding: 0.75em 2em;
  }
  section.viewall h2:hover {
    background: #c4c4c4;
  }
  section.more-info {
    animation: moveIn 1s ease-in-out forwards;
  }
  .feature {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 4em;
    gap: 2em;
  }
  .feature .content {
    padding-left: 20%;
    max-width: 800px;
    text-align: left;
  }
  /*

  .feature.left {
      grid-template-areas: 
          "left right";

      .content {
          justify-self: right;
          grid-area: right;
          padding-right: 0;
          padding-right: 20%;
      }

      .image {
          grid-area: left;
          //float: left;
      }
  }

  */
  section.about {
    color: #039191;
    height: auto;
    width: 100%;
    margin-bottom: 8em;
    text-align: center;
  }
  footer {
    display: flex;
    background-color: rgb(255, 255, 255);
  }
  footer img {
    justify-content: right;
    -o-object-fit: contain;
       object-fit: contain;
    height: 1.5em;
  }
  footer h6 {
    justify-content: left;
    text-align: center;
  }
}
/*

@media only screen and (min-width: 1400px){
    .wrapper {
        //width: 1400px;
        margin: 0 auto;
    }

    //takes away the gap inherent in a grid item
    .feature {
        width: 1400px; 
        gap: 0;
    }
}
*/
@keyframes introLoad {
  from {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  to {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes moveArrow {
  from {
    transform: translateY(-30px);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes moveDown {
  from {
    transform: translateY(-100px);
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes moveIn {
  from {
    transform: translateX(-120px);
  }
  to {
    transform: translateX(0);
  }
}/*# sourceMappingURL=portfolio-item.css.map */