@import url("https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@390&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Syne+Mono&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Akaya+Kanadaka&display=swap');
header {
  background-color: #831539;
  
}

h1{
  font-family:  'Akaya Kanadaka', cursive !important;
  font-size: 60px;
}

@media only screen and (max-width: 600px) {
  h1 {
    font-family:  'Akaya Kanadaka', cursive !important;
    font-size: 40px;
  }
}



body {
  position: relative;
  background-color: #EEEEEE; /* rgb(240, 229, 169);*/
  min-height: 100vh;
  padding-bottom: 200px;
}

.nav-link{
  font-family: 'Syne Mono', monospace;
  font-size: 25px;
}
 
main{
  margin-bottom: 40px;
}
footer {
  position: absolute;
  bottom: 0;
  width:100%;
/*  height: 140px;*/
  background-color: #831539;
  font-family: "Libre Franklin", sans-serif;
  color: white !important;
}

footer a {
  color: white;
}



.footer-content{
  padding:15px 15px 0px 15px;
  display: flex;
  flex-direction: row;
}
.contact-info{
  margin-top: 15px;
  display:flex;
  flex-direction: row;
}

.contact-info > a {
  margin-left: 15px;
}

.footer-text{
  text-align: center;
  margin-top: 25px;
  
}

.address{
  position: absolute;
  right:35px;
  bottom: 95px;
}

h1 {
  color: #ffffff;
  font-family: "Libre Franklin", sans-serif;
  text-align: center;
  padding: 10px;
}

div {
  font-family: "Libre Franklin", sans-serif;
}

/*Book Page styling */

.book-box {
  /* background-color: blue; */
  margin: auto;
}

.book-shell {
  /* background-color: rgb(209, 17, 235); */
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-direction: row;
  padding: 50px;
  justify-content: center;
  border-top-style: solid;
  border-color: rgb(172, 172, 172);
  border-width: 1px;
}

.book-cover {
  /* background-color: yellow; */
  height: auto;
  width: 400px;
  align-items: center;
  margin-bottom: 2px;
}

.book-image {
  /* display: block; */
  height: 250px;
  margin: auto;
  margin-right: 20px;
}

.book-info {
  /* background-color: green; */
  max-width: 600px;
}

.content {
  max-width: 1350px;
  /* min-width: 400px; */
  margin: 0px;
  padding:0px;
}


.book-title {
  font-size: 20px;
}

.book-caption {
  font-size: 18px;
}



/*MV page styling */


.mv-shell {
  /* background-color: rgb(209, 17, 235); */
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: row;
  padding: 50px;
  justify-content: center;
  border-top-style: solid;
  border-color: rgb(172, 172, 172);
  border-width: 1px;
}

.mv-text{
  margin-right: 30px;
}

.mv-title {
  font-size: 20px;
}

.mv-date{
  font-size: small;
}

.mv-desc{
  font-size: 14px;
}

.mv-container {
  min-width: 480px;
  height: 270px;
}




@media only screen and (max-width: 600px) {
  .book-shell {
    flex-direction: column;
  }
}

@media only screen and (max-width: 1000px) {
  
  .mv-shell {
    flex-direction: column;
  }

  .mv-container {
    margin: auto;
    margin-top: 25px;
    min-width: 80%;
    height: 100%;
  }

  .mv-text{
    margin-right: 0px;
    min-width: 300px;
  }
}

/* Music Page Styling */

.album-shell {
  /* width: 600px; */
  margin-bottom: 100px;
}
.album-cover-shell {
  margin-bottom: -160px;
}

.album-cover-image {
  height: 200px;
  width: 200px;
  margin-left: 20px;
  border-radius: 15px;
  box-shadow: 0px 10px 20px 2px grey;
  border-style: solid;
  border-width: 1px;
  border-color: rgb(155, 33, 33);
}

.album {
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  border-color: rgb(129, 27, 27);
  background-color: rgba(255, 255, 255, 0);
}

.album-title {
  /* background-color:rgb(255, 255, 255); */
  margin-left: 225px;
  padding-left: 30px;
  font-size: 35px;
}

.album-desc {
  margin-left: 225px;
  padding-left: 30px;
  min-height:100px;
}

.album-header-row{
  margin: 5px;
  padding:8px;
  padding-bottom: 0;
  margin-top: 20px;
  display: grid;
  grid-template-columns: 32% 20% 15% auto 80px;
}

.col-header{
  color:rgb(155, 33, 33);
  font-style:bold;
}


.songs {
  
}

.song {
  border-style: solid;
  border-width: 1px;
  border-color: rgb(155, 33, 33);
  /* border-radius: 3px; */
  border-right: none;
  border-left:none;
  border-bottom: none;
  margin: 5px;
  padding: 8px;
  height: 50px;

  display: grid;
  grid-template-columns: 32% 20% 15% auto 80px;
  grid-template-areas: "name ragam talam singer buttons";
}

.song-name {
  grid-area: name;
}
.song-ragam {
  grid-area: ragam;
}
.song-talam {
  grid-area: talam;
}
.song-singer {
  grid-area: singer;
}
.song-buttons {
  display:flex;
  flex-direction: row;
  margin: 0px 10px;
}

.playpause {
  width: 30px;
  height: 30px;
  /* background-color: orange; */
  border-radius: 50%;
}

.triangle-right {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-left: 16px solid rgb(182, 66, 66);
  border-bottom: 8px solid transparent;
  margin-top: 5px;
}

.samplePlaying {
  background-image: url("../assets/pause-circle-fill.svg");
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0);
  border-style: none;
}
.samplePaused {
  background-image: url("../assets/play-circle-fill.svg");
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0);
  border-style: none;
}

.downloadButton{
  background-image: url("../assets/cloud-arrow-down-fill.svg");
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0);
  border-style: none;
}

/* mobile phone media query */
@media only screen and (max-width: 750px) {
  .song-ragam {
    display: none;
  }
  .song-talam {
    display: none;
  }
  .song-singer {
    display: none;
  }
  .song-buttons {
    margin-right: 20px;
  }
  .songs{
    margin-top: 70px;
  }
  .song {
    grid-template-columns: 80% auto;
    padding-right: 30px;
  }

  .album-shell {
    /* width: 600px; */
    margin-bottom: 100px;
    margin-top: 50px;
  }
  .album-cover-shell {
    margin-bottom: -110px;
  }

  .album-cover-image {
    height: 100px;
    width: 100px;
    margin-left: 10px;
    border-radius: 10px;
    box-shadow: none;
  }

  .album {
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(129, 27, 27);
    background-color: rgba(255, 255, 255, 0);
  }

  .album-title {
    /* background-color:rgb(255, 255, 255); */
    margin-left: 100px;
    padding-left: 30px;
    font-size: 22px;
    margin-top: 8px;
  }
  .album-desc{
    display: none;
  }

  .col-header{
    display: none;
  }
}

/* musicial embeds */
.yt-emebd{
  border-radius: 10px !important;
}
