/* 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: #ffffffa5;
    /* padding: 20px; */
    padding: 10px 20px;
    text-align: center;
    border-radius: 30px;
    border: 5px solid;
    border-color: #85b1d4 ;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Header Styling */
header {
    /*font-family: Papyrus, Fantasy;*/
    background: #2e529be6;
    color: #ffffff;
    padding: 10px 20px;
    text-align: center;
    border-radius: 30px;
    border: 5px 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-top: 20px;
    padding: 10px;
    /*background: #333;*/
    background: #2e529bbe;
    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;
}

h2 {
    /* font-family: Lucida Bright, Serif; */
    font-family: 'hobostd', serif;
    margin: 5px;
    font-size: 2em;
    text-align: center;
}

h3 {
    /* font-family: Lucida Bright, Serif; */
    font-family: 'hobostd', serif;
    margin: 5px;
    font-size: 1.5em;
    text-align: center;
}

h4 {
    /* font-family: Lucida Bright, Serif; */
    font-family: 'hobostd', serif;
    margin: 5px;
    font-size: 1.25em;
    text-align: center;
}

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;
}

.button1 {
    background-color: #425998; /* Green */
    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;
    /* 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;
    position: relative;
    border: 3px solid rgb(73, 101, 130);
    border-radius: 30px;
    background-color: #98b5d8;
  }
  
.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);
  }
   */



