/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* create fade in animation */
@keyframes fadeIn {
  from { 
    background-color: #032553;
    opacity:0; 
  }
  
  to {
    /* background-color: #356dd498; */
    /* background-color: #7ba2ea; */
    background-image: linear-gradient(#efe297,#5c86b4);
    opacity: 1;}
}

.fade-in {
  animation: fadeIn 1s ease-in-out;
}

/* Body Styling */
body {
    /*font-family: Papyrus, Fantasy;*/
    font-family: Lucida Bright, Serif;
    line-height: 1.6;
    color: #333;
    /*background-color: #98b5d8;*/
    /* background-color: #97bee9; */
    /* background-color: #5281d9; */
    /* background-image: linear-gradient( #e9e9ba,#99b6ed); */
    background-image: linear-gradient(#efe297,#5c86b4);
    padding: 20px;
    border-radius: 60px;
    margin: 0;
    /* 
    opacity: 0;
    transition: opacity 3s ease-in-out;
    */
    animation-name: fadeIn;
    animation-duration: 0.5s;
        }

        /*  
main{
   
    padding: 10px 20px;
    text-align: center;
    border-radius: 50px;
    border: 5px solid;
    border-color: #dae4ec ;
    background-color: #abc2cc;
}
    */

/* Main Content Styling */
main {
    background: #e1e4e668;
    /* padding: 20px; */
    padding: 10px 20px;
    text-align: center;
    border-radius: 30px;
    border: 5px solid;
    border-color: #a8c7e153 ;
    background-clip: padding-box; 
    box-shadow: 0 2px 5px rgba(168, 183, 185, 0.7);
}

/* Header Styling */
header {
    /*font-family: Papyrus, Fantasy;*/
    /* background: #2e529be6; */
    background-image: radial-gradient(#efe297,#5c86b4);
    color: #ffffff;
    padding: 10px 20px;
    text-align: center;
    border-radius: 30px;
    border: 10px double;
    border-color: #ffffff91 ;
}

@font-face { 
    font-family: 'hobostd'; 
    src: local('hobostd'), url("/font/hobostd.otf") format("truetype");
}
header h1 {
    /*font-family: Papyrus, Fantasy;*/
    font-family: 'hobostd', serif;
    margin: 0;
    font-size: 5em;
    text-align: center;
    
}
header h2 {
    font-family: 'hobostd', serif;
    margin: 0;
    font-size: 3em;
    text-align: center;   
}

/* Footer Styling */
footer {
    /* font-family: Papyrus, Fantasy; */
    font-family: 'hobostd', serif;
    text-align: center;
    margin: 20px 20px;
    padding: 20px;
    /*background: #333;*/
    /* background: #2e529bbe; */
    /* background-image: radial-gradient(#5c86b4 0%, #efe297 10%,#5c86b4 80%); */
    /* background-image: radial-gradient(#5c87b4d1, #efe297c3); */
    background-image: radial-gradient(#efe297c3, #5c87b4d1);
    color: #fff;
    font-size: 0.9rem;
    border-radius: 30px;
    border: 5px double;
    border-color: #ffffff91 ;
}

h1 {
  font-family: 'hobostd', serif;
  font-size: 3em;
  text-align: center;
  margin: 5px;
  text-shadow:0px 10px 10px #0000003e;
}

h2 {
    /* font-family: Lucida Bright, Serif; */
    font-family: 'hobostd', serif;
    margin: 5px;
    font-size: 2em;
    text-align: center;
    text-shadow:0px 7px 10px #00000036;
}

h3 {
    /* font-family: Lucida Bright, Serif; */
    font-family: 'hobostd', serif;
    margin: 5px;
    font-size: 1.5em;
    text-align: center;
    text-shadow:0px 5px 10px #00000036;
}

h4 {
    /* font-family: Lucida Bright, Serif; */
    font-family: 'hobostd', serif;
    margin: 5px;
    font-size: 1.25em;
    text-align: center;
    text-shadow:0px 5px 10px #00000036;
}

p {
    margin: 0;
    font-size: 1.5em;
    text-align: left;    
}
/* class for adaptive text to scale with window */
p.p_adapt {
    font-size: 1.5em;
    font-size: calc(.75vw + .75em) /* using calc so that zoom stil works some and adaptive scaling does too. */
}
#p_center {
    margin: 0;
    font-size: 1.5em;
    text-align: center;    
}

a {
    margin: 0;
    font-size: 1.5em;
    text-align: center;
}

/* sytle to center the image */
.align_center {
    /*text-align: center;*/
    display: block;
    margin-left: auto;
    margin-right: auto;
    /*width: 50%;*/
}

/* styles for image grid */
.image-grid {
  --gap: 4px;
  --num-cols: 2;
  --row-height: 500px;
  /* --row-height: 100%; */
  
  box-sizing: border-box;
  padding: var(--gap);

  display: grid;
  grid-template-columns: repeat(var(--num-cols), 1fr);
  grid-auto-rows: var(--row-height);
  gap: var(--gap);
}

.image-grid > img {
  width: 100%;
  height: 100%;
  /* width: auto; */
  object-fit:contain;
}

.image-grid > p {
  width: 100%;
  height: 100%;
  /* width: auto; */
  object-fit:contain;
  
}

.image-grid > div {
  width: 100%;
  height: 100%;
  /* width: auto; */
  object-fit:contain;
  overflow: scroll; /* added so that text overflow can be viewed using scroll, instead of going outside box. */
}


@media screen and (max-width: 1024px) {
  .image-grid {
    --num-col: 2;
    --row-height: 200px;
  }
  /* try to make it so that if screen is small, text size decreases */
  p {
    font-size: 1 em;
  }
}

.image-grid-3 {
  --gap: 4px;
  --num-cols_3: 3;
  --row-height: 500px;
  /* --row-height: 100%; */
  box-sizing: border-box;
  padding: var(--gap);
  display: grid;
  grid-template-columns: repeat(var(--num-cols_3), 1fr);
  grid-auto-rows: var(--row-height);
  gap: var(--gap);
}

.image-grid-3 > img {
  width: 100%;
  height: 100%;
  object-fit:contain;
}

/* Navigation Styling */
nav {
    margin: 20px 0;
    text-align: center;
}

nav a {
    color: #333;
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
}

nav a:hover {
    color: #007BFF;
}



.btn-grad {
  background-image: linear-gradient(to top, #425998, #f5f5b8);
  margin: 4px 4px;
  padding: 20px 20px;
  text-align: center;
  text-transform: uppercase;
  text-shadow:0px 5px 5px #ffffff53;
  background-position: center;
  transition: 0.25s;
  background-size: 200% auto;
  color: white;
  box-shadow: 0 0 20px #eee;
  outline: none;
  border-radius: 30px;
  border: 4px outset #cad3de59 ;
  background-clip: padding-box; 
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  font-size: 16px;
  font-family: 'hobostd', serif;
  box-shadow: 0 10px 10px rgba(0, 32, 67, 0.22);
}

.btn-grad:hover {
  background-position: bottom;
  background-image: linear-gradient(to top, #4c65a9, #ffffc1);
  /* background-image: linear-gradient(to top, #425998, #f5f5b8 ); */
  opacity: .95;
  
  color: #f5f5b8;
  text-shadow:0px 0px 5px #f5f5b8;
  /* color: #072a5b; */
  text-decoration: none;
  /* transition: opacity 0.15s ease-in; */
}



.btn-grad2 {
  background-image: radial-gradient( #405693 0%, #f0f0b3 75%);
  margin: 4px 4px;
  padding: 1px 1px;
  width: 110px;
  height: 110px;
  background-position: center;
  transition: 0.25s;
  background-size: 200% auto;
  color: white;
  box-shadow: 0 0 20px #eee;
  outline: none;
  border-radius: 50%;
  border: 3px double #b0bce059 ;
  background-clip: padding-box; 
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  cursor: pointer;
  font-size: 16px;
  font-family: 'hobostd', serif;
  box-shadow: 0 10px 10px rgba(0, 32, 67, 0.22);
}

.btn-grad2:hover {
  background-position: bottom;
  /* background-image: radial-gradient( #425998 0%, #f5f5b8 75%); */
  background-image: radial-gradient( #4c65a9 0%, #ffffc1 75%);
  opacity: .95;
  text-shadow:0px 0px 5px #f5f5b8;
  color: #f5f5b8;
  /* color: #072a5b; */
  text-decoration: none;
}



.button1 {
    background-color: #425998; /* Green */
    /*background: radial-gradient(circle, #42599890, #425998;);
    display: block;
    
    /* border: 1px solid #0b2844 ; */
    border: 3px outset #5976c741 ;
    /*border: 5px ridge #425998 ;*/
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 30px;
    background-clip: padding-box; 
    /* font-family: Lucida Bright, Serif; */
    font-family: 'hobostd', serif;
    box-shadow: 0 10px 10px rgba(0, 32, 67, 0.22);
}

.button1:hover
{
    background-color: #526496;
    color:#ffffff;
    border: 3px inset #5976c741;
    /* border: 5px groove #526496; */
}


.button_box {
    height: fit-content;
    padding: 10px 10px;
    position: relative;
    /* border: 3px solid rgb(73, 101, 130); */
    border-radius: 30px;
    border: 4px outset #b0bce059 ;
    background-clip: padding-box; 
    /*background-color: #98b5d882;*/
    background-image: radial-gradient(#efe297,#5c86b4);
  }
  
.vertical-center {
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

/* Create styles for the contaner for the music player */
  .container{ 
    width: 100%;
    height: 100%;
    /* background: #0c3a64; */
    background-image: linear-gradient(#efe297,#5c86b4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* create container for discography */
  
  /* music player stlyes */
  .music-player {
    /* background: #94d8ff; */
    background-image: linear-gradient(#efe297,#5c86b4);
    width: 500px;
    padding: 25px 35px ;
    text-align: center;
  }
  .controls{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .controls div{
    width: 60px;
    height: 60px;
    margin: 20px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #2e529b;
    box-shadow: 0 10px 20px rgba(26, 137, 255, 0.22);
    cursor: pointer;
  }
  .controls div:nth-child(2){
    transform: scale(1.2);
    background: #25689b;
    color: #fff;
  }
  .controls div:nth-child(4){
    transform: scale(0.8);
  }

  .volControl{
    display: flex;
    justify-content: center;
    align-items: center;
    
  }
  .volControl div{
    width: 30px;
    height: 30px;
    margin: 20px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #2e529b;
    box-shadow: 0 10px 20px rgba(26, 137, 255, 0.22);
    cursor: pointer;
  }


  .music-player h1{
    font-family: 'hobostd', serif;
    margin: 0;
    font-size: 2em;
    font-weight: 400;
    text-align: center;
    margin-top: 20px;
  } 
  .music-player p{
    font-family: 'hobostd', serif;
    margin: 0;
    font-size: 1.5em;
    text-align: center;
    } 
    #progress{
        -webkit-appearance: none;
        width: 100%;
        height: 6px;
        background: #08557f;
        border: 1px, solid, #333;
        border-radius: 4px; 
        cursor: pointer;
        margin: 40px 0;  
    }
    #progress::-webkit-slider-thumb{
        -webkit-appearance: none;
        background: #0b233a;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        border: 3px solid #fff;
        box-shadow: 0 5px 5px rgba(26, 137, 255, 0.22);
    }
/* styles for the nav tag */
  nav {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
  }

  nav .circle {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #fff;
    color: #3b8dbf;
    box-shadow: 0 5px 10px rgba(26, 137, 255, 0.22);
  }

  .song-img{
    width: 220px;
    /* border-radius: 50%; */
    border: 8px solid #fff;
    box-shadow: 0 10px 60px rgba(26, 137, 255, 0.22);
  }

  /* .flex-container{
    display: flex;
    flex-direction:  ;
  } */

  .container_disco_Kael{ 
    width: 100%;
    height: 100%;
    /* background: #0c3a64; */
    background-image:radial-gradient(#fff,#29558368);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 5px;
    border: 5px solid;
    border-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  .container_disco_VOE{ 
    width: 100%;
    height: 100%;
    /* background: #0c3a64; */
    background-image: linear-gradient(#efe29789,#5c87b468);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 5px;
    border: 5px solid;
    border-color: #efe29789;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .container_disco_CG{ 
    width: 100%;
    height: 100%;
    /* background: #0c3a64; */
    background-image: linear-gradient(#6d14b587,#e92de379);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 5px;
    border: 5px solid;
    border-color: #6d14b587;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
 
  }

  .disco-grid {
  --gap: 4px;
  --num-cols: 2;
  --row-height: 500px;
  /* --row-height: 100%; */
  
  box-sizing: border-box;
  padding: var(--gap);

  display: grid;
  grid-template-columns: repeat(var(--num-cols), 1fr);
  grid-auto-rows: var(--row-height);
  gap: var(--gap);
}

.disco-grid > p {
  width: 100%;
  height: 100%;
  /* width: auto; */
  object-fit:contain;
}

.disco-grid > img {

  height: 100%;
  width: 100%;
  /* width: auto; */
  align-self: center;
  object-fit:contain;

  /* box-sizing: border-box;
  border: 8px solid #fff;
  box-shadow: 0 10px 60px rgba(26, 137, 255, 0.22); */
}



.disco-grid > div {
  width: 100%;
  height: 100%;
  /* width: auto; */
  object-fit:contain;
  overflow: scroll; /* added so that text overflow can be viewed using scroll, instead of going outside box. */
}
/* 
  .album-img{
    width: auto;
    height: 100%;

    align-self: center;
    /* border-radius: 50%;
    flex: 1; */
    /*
    box-sizing: border-box;
    border: 8px solid #fff;
    
    box-shadow: 0 10px 60px rgba(26, 137, 255, 0.22);
  }
   */



