@import url('https://fonts.googleapis.com/css2?family=Zen+Kurenaido&display=swap');

*{
    margin: 0;
    padding: 0;
}

body{
    font-family: 'Zen Kurenaido', sans-serif;
    font-size: 1.5rem;
}

.container{
    width: 100%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header{

    width: 100%;
    height: auto;
    background-image: linear-gradient(to right top, #ff1d1d, #d10047, #900057, #49014f, #0b0032);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2em 0;
    margin-bottom: 2em;
}

h3{
    font-size: 2rem;
    color: white;
    padding-left: .5em;
    margin-bottom: 1.5em;
}

.logo{
    display: block;
    width:100px;
    height: 100px;
}

form{
    position: relative;
    width:500px;
    display: flex;
}

.search{
    background-color: white;
    font-size: 1.2rem;
    border-radius: 30px ;
    padding:15px 30px;
    outline: none;
    border: none;
    width:100%;
    
    font-family: 'Zen Kurenaido', sans-serif;
}


.cta {
    position: absolute;
    right: 2px;
    top: 4px; 
    padding: 12px 18px;
    transition: all 0.2s ease;
    border: none;
    background: none; 
    cursor: pointer;
   }
   
   .cta:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    display: block;
    border-radius: 30px;
    background: #179AC4;
    width: 30px;
    height: 30px;
    transition: all 0.3s ease;
   }
   
   .cta span {
    position: relative;
    font-family: 'Zen Kurenaido', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
   }
   
   .cta svg {
    position: relative;
    top: 0;
    margin-left: 10px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #FC4539;
    stroke-width: 2;
    transform: translateX(-5px);
    transition: all 0.3s ease;
   }
   
   .cta:hover:before {
    width: 100%;
    background: linear-gradient(90deg,#9fe4fc ,#179AC4);

   }
   
   .cta:hover svg {
    transform: translateX(0);
   }
   
   .cta:active {
    transform: scale(0.95);
   }

   .lyrics-container{ 
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    width: 100%;
}

   ul{
        width:80%;
       list-style-type: none; 
       margin-bottom: 1em;
   }

   li{ width: 100%;
       text-align: left;
       display: flex;
       justify-content: space-between;
       margin-bottom: .5em;
   }

   .btn{
    background: linear-gradient(-45deg, #ff1d1d, #d10047,#ff699b, #900057, #49014f, #0b0032);
    background-size: 800% 400%;
    padding: .5em 1em;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 700;
    color: white;
    transition: all .5s ease-in-out;
    animation: gradient 5s infinite;
    cursor: pointer;

   }

   .btn:hover {
        transform: scale(1.05);
   }

   .artistName{
       color:#179AC4 ;
   }

  
   @keyframes gradient {
    0% {
     background-position: 0% 50%;
    }
   
    50% {
     background-position: 100% 50%;
    }
   
    100% {
     background-position: 0% 50%;
    }
   }

  @media(max-width:740px){

    Body{
        font-size: 1rem;
    }

    ul{
        width:95%;}

    form{

    width:300px;   }
    
    .search{
        padding:10px 20px;
        font-size: 1rem;}

    .btn{
    
    padding: .3em .6em;
    font-size: 13px;
  }

  .cta {
    right: 3px;
    top: 2px; 
    padding: 10px 5px;
   }
   
   .cta:before {
    top: 5px;
    left: 0;
   }
   
   .cta span {
    font-size: .9rem;
   }


   h3{
    font-size: 1.5rem;}

.logo{
    display: block;
    width:70px;
    height: 70px;
}



}