body {
    margin: 0;
    background-color: #000000;
    font-family: 'Montserrat', sans-serif;
}

h1 {
    color: #ffffff;
}

h2 {
    margin-bottom: 05px;
    color: white;
    font-style: italic;
    font-weight: lighter;
    font-family: 'Poppins', sans-serif;
}

p {
    color: white;
}

ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

li {
    background-color: #70e000;
    color: #fff;
    padding: 15px;
    margin: 10px 0;
    border-radius: 8px;
    transition: background-color 0.3s;
}

li a {
    margin: 5px;
    text-decoration: none;
    color: #fff;
}

li:hover {
    background-color: #008000;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; 
    text-align: center;
}

.navbar {
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    margin: auto;
    padding: 25px 0;
}

.nav-items {
    margin-right: 35px;
    padding-top: 5px;
    display: flex;
    align-items: center;
}

.nav-logo {
    margin-left: 25px;
    animation: fadeIn 1s ease-out;
}

.nav-link {
    margin-right: 20px;
    margin-top: 7px;
    animation: fadeIn 1s ease-out;
}

.nav-link-menu {
    margin-right: 20px;
    padding-top: 7px;
    animation: fadeIn 1s ease-out;
}

.icon {
    height: 25px;
    color: white;
    font-size: 24px;
}

#logo-big {
    width: 200px;
}

#logo-small {
    width: 50px;
    display: none;
}

.user-info {
    display: inline-block;
    vertical-align: middle;
    height: auto;
}

.user-logo{
    background-color: #414141;
    margin-left: 9px;
    border-radius: 30px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    padding: 6px;
    transition: all .1s ease-in-out;
}

.profile-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.username {
    max-width: 120px;
    line-height: 36px;
    margin-right: 10px;
    font-family: Circular, sans-serif;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: 20px;
}

.dropdown {
    position: relative;
    cursor: pointer;
}
  
.dropdown > button {
    width: 170px;
    height: 60px;
    border: 0;
    border-radius: 30px;
    font-family: inherit;
    font-size: 17px;
    background: #3c3c3c;
}
  
.dropdown > .content {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    height: 60px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f7f7f7;
}
  
.dropdown > .content::after {
    content: "";
    position: absolute;
    bottom: 6px;
    right: 10%;
    width: 80%;
    height: 1px;
    transform: scaleX(0);
    transition: 0.3s;
}

.dropdown:hover > .content::after {
    transform: scaleX(1);
}
  
.dropdown > .content > span:first-child {
    font-size: 20px;
}
  
.dropdown > .content > span:last-child {
    margin-left: auto;
}
  
.dropdown > .content > span:last-child {
    transition: 0.3s;
}
  
.dropdown > .menu {
    position: absolute;
    z-index: 1;
    top: -6px;
    left: 50%;
    display: grid;
    width: 110%;
    padding: 70px 0 6px;
    border-radius: 6px;
    translate: -50% 0;
    visibility: hidden;
    opacity: 0;
    scale: 0.85;
    background: linear-gradient(#414141, #1ed760);
    transition: 0.3s;
}
  
.dropdown:hover > .menu {
    visibility: visible;
    opacity: 1;
    scale: 1;
    border-radius: 20px;
    padding-bottom: 15px;
    gap: 10px;
}
  
.dropdown > .menu > a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f7f7f7;
    font-size: 14px;
    padding: 0 24px;
    text-decoration: none;
}
  
.dropdown > .menu > a:hover {
    background: rgb(0 0 0 / 10%);
}
  
.dropdown > .menu > a > span {
    font-size: 18px;
}

.button-time{
    display: flex;
    justify-content: space-evenly;
    padding: 10px 0;
}

.button-1 {
  background-color: #70e000;
  border-radius: 8px;
  border-style: none;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-family: "Haas Grot Text R Web", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  line-height: 20px;
  list-style: none;
  margin: 0;
  outline: none;
  padding: 10px 5px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: color 100ms;
  vertical-align: baseline;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-1:hover,
.button-1:focus {
  background-color: #008000;
}

.container {
    position: relative;
    max-width: 800px;
    margin: 10% auto;
    padding: 20px;
    background-color: #1f9b1f;
    border-radius: 10px;
}

.container-demo {
    position: relative;
    max-width: 800px;
    margin: 100px auto 50px auto;
    padding: 20px;
    background-color: #1f9b1f;
    border-radius: 10px;
}

.artist-box {
    border: 1px solid #20ce1a;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
}

.artist-box:hover {
    background-color: #107b10;
}

.artist-image {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    margin-right: 10px;
}

.artist-info {
    position: relative; 
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px;
    display: none;
    width: 100%;
    margin-top: 10px;
}

.artist-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
}

.artist-link:hover {
    text-decoration: underline;
    color: #000000;
}

.spotify-attribution {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #ffffff;
    margin-top: 5px;
}

.spotify-logo {
    width: 14px;
    height: 14px;
    vertical-align: middle;
}

.spotify-link {
    font-size: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.spotify-link:hover {
    text-decoration: underline;
}


.loader {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
    margin:15px auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFF;
    box-sizing: border-box;
    animation: animloader 1s linear infinite alternate;
    z-index: 999;
    display: none;
  }

#artist-container.loading {
    opacity: 0.5;
    pointer-events: none;
}

.waves-container {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 20vh;
    z-index: -1;
}

.waves {
    position: relative;
    width: 100%;
    height: 100%;
    animation: fadeIn 1s ease-out;
}

.footer-text {
    text-align: center;
    margin-bottom: 60px;
}

.buttons {
    text-align: center;
    margin-top: 20px;
    display: flex;
    margin: 25px 0 5px;
    justify-content: center;
    width: 80%;
    gap: 5px;
}

.cta-button {
    background-color: #1DB954;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background-color: #1ED760;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
}

.buttons-demo{
    text-align: center;
    display: flex;
    justify-content: center;
    margin: 30px;
}

.parallax > use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
    fill: rgba(30, 215, 96, 0.7);
}

.parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
    fill: rgba(21, 121, 55, 0.7);
}

.parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
    fill: rgba(30, 215, 96, 0.7);
}

.parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s; 
    fill: rgba(21, 121, 55, 0.7);
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}

@keyframes animloader {
    0% {
      box-shadow: -38px -12px ,  -14px 0,  14px 0, 38px 0;
    }
    33% {
      box-shadow: -38px 0px, -14px -12px,  14px 0, 38px 0;
    }
    66% {
      box-shadow: -38px 0px , -14px 0, 14px -12px, 38px 0;
    }
    100% {
      box-shadow: -38px 0 , -14px 0, 14px 0 , 38px -12px;
    }
}

@media screen and (max-width: 768px) {
    h1 {
        margin: 25px 0 25px 0;
        font-size: 24px;
    }
    .navbar #logo-big {
        display: none;
    }
    .navbar #logo-small {
        display: block;
    }
    .tool-container{
        padding: 120px 0;
    }
    .nav-items{
        margin-right: 15px;
        padding-top: 0;
    }
    .nav-logo{
        margin-left: 15px;
    }
    .username{
        display: none;
    }
    .profile-image{
        margin-right: 0;
    }
    .user-logo{
        margin-left: 4px;
    }
    .navbar{
        top: 0;
        padding: 25px 0 15px;
    }
    .button-1 {
        margin: 5px 10px;
        height: auto;
    }
    .container {
        margin: 30% 5%;
    }
    .container-demo {
        margin: 100px 20px 50px 20px
    }
    .dropdown > button {
        width: 50px;
        height: 50px;
        border-radius: 25px;
    }
    .dropdown > .content {
        height: 50px;
        padding: 0 5px;
    }
    .dropdown > .content::after {
        bottom: 0;
    }
    .dropdown > .menu {
        top: 100%;
        left: -20%;
        width: 240%;
        padding: 15px 0;
    }
    .dropdown > .menu > a {
        padding: 6px 15px;
        font-size: 14px;
    }
    .dropdown > .menu > a > span {
        font-size: 12px;
    }
}
