@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

@font-face{
  font-display: swap;

}


body{
  font-family: 'Open Sans', sans-serif;
  background-image: url("../images/sleeperBG.webp");
  background-size: 1049px 793px;
  background-repeat: no-repeat;
  background-position: right top;
  background-color: #982916;
}


main {
  color: #ffffff;
  text-align: center;
  display: grid;
  /*grid-template-rows: 200px 900px 1fr 1fr 1fr;*/
  grid-template-rows: 0.1fr 0.1fr 1fr;
  grid-template-columns: 0.9fr 1fr 1fr;
  padding: 5%;
}

.projTitle{
  text-align: left;
  grid-row: 1;
  grid-column: 1 / 3;
  letter-spacing: 3px;
  font-size: 1.5rem;
}


#selected{
  border-bottom: solid 2px rgba(255, 255, 255, 0.5);
}

/********* The Divider START ************/



.theDivider h2{
  /* text-transform: uppercase; */
  letter-spacing: 2px;
  padding-bottom: 5px;
}

.dividerType{
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 2px;
  /**** Got to FIX the border going to the edge. Should only be like 70% ****/
  border-bottom: solid 1px rgba(255, 255, 255, 0.7);
  padding-bottom: 5px;
  font-weight: bold;
}


.Short{
  font-size: 1.5rem;
}

.something{
  padding-left: 2%;
  padding-top: 6%;
  text-align: left;
}

.dividerQuote{
  padding-top: 2%;
}
/******************** Divider!!! ABOVE ************************/

/********************** EPISODES START *************************/
.yeet{
  overflow: auto;
  padding-top: 2%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  grid-row: 3;
  grid-column: 1 / 2;
}

.episodes{
  margin-top: 15px;
  padding: 4%;
  background-color: rgba(225, 225, 225, 0.1);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  width: 100%;
  transition: background-color 0.5s;
  text-align: left;
  font-size: 1.2rem;
  cursor: pointer;
  }


.episodes p{
  color: rgba(0, 0, 0, 0.7);
}


.text{
  padding-left: 7%;
}

/********************** EPISODES END *************************/

.miniEP{
  display: flex;
  flex-direction: row;
  grid-row: 2;
  grid-column: 1 / 3;
  padding-top: 1%;
}

.miniEP img{
  width: 390px;
  height: 200px;
}

/***************************/

.textPR{
  padding-top: 2%;
  margin-left: 6.5%;
  grid-column: 2 / 4;
  grid-row: 3;
}



.yikes{
  padding-top: 1%;
  text-align: left;
  font-size: 1.2rem;
}

.yikes h2{
  font-size: 2rem;
}

iframe{
  border-radius: 25px;
  width: 1000px;
  height: 400px;
}

.dark{
  color: rgba(0, 0, 0, 0.6);
}
/***************************/


.darkFooter{
  background-color: black;
  color: white;
}

@media only screen and (min-device-width: 1025px) {
  .small{
    display: none;
  }
}

@media only screen and (max-device-width: 1024px) {

  .full{
    display: none;
  }

  .projTitle{
    padding-top: 3%;
  }

  iframe{
    width: 600px;
    height: 250px;
  }

  .miniEP{
    grid-column: 1 / 4;
  }

  .miniEP img{
    width: 290px;
    height: 150px;
  }

  .text{
    font-size: 0.9rem;
  }

  .Short{
    font-size: 1rem;
  }

  .yikes{
    font-size: 0.9rem;
  }

  .yikes h2{
    font-size: 1.5rem;
  }

}

@media only screen and (max-width: 800px) {
  .nav_links{
    display: none;
  }
  .menu{
    display: inherit;
  }

}

@media only screen and (min-device-width: 768px) {
    .IPX{
      display: none;
    }
}

@media only screen and (max-device-width: 375px) {

  main{
    grid-template-rows: 0.1fr 0.1fr 0.27fr 1fr;
    grid-template-columns: 0.9fr 1fr 1fr;
  }

  iframe{
    width: 800px;
    height: 500px;
  }

  .projTitle{
    padding-top: 10%;
    padding-bottom: 5%;
  }

  .yeet{
    flex-direction: row;
    grid-column: 1 /4;
    grid-row: 3;
  }

  .episodes{
    margin-right: 1%;
    width: 23%;
    padding: 2%;
  }

  .epInfo{
    padding: 2%;
    display: grid;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .textPR{
    grid-row: 4;
    grid-column: 1/4;
  }

  .yikes{
    font-size: 0.5rem;
  }

  .yikes h2{
    font-size: 1rem;
  }

}
