.closeButton {
    cursor: pointer; 
    background-color: 
    #8FC6FF; 
    padding: 5px; 
    width: fit-content; 
    border-radius: 10px; 
    margin: 0 auto;
}

.header {
    display: flex; 
    backdrop-filter: blur(5px); 
    background-color: rgba(0, 0, 0, 0.2); 
    color: #fff; 
    border-radius: 10px; 
    padding: 0 20px;
}

.welcomePop {
    border: 1px solid #ABD2F5; 
    border-width: 5px; 
    width: 480px; height: fit-content; 
    border-radius: 25px; 
    padding: 20px; 
    background-color: #A6D9FF; 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    backdrop-filter: blur(5px); 
    background-color: rgba(108, 187, 251, 0.4)
}

.bodyStyle {
    background-color: lightskyblue; 
    font-family: Lexend; 
    background-image: url(./Assets/backgroundimage.png); 
    background-size: cover; 
    height: 100vh
}

.iconStyle {
    width: 64px; 
    height: 64px; 
    border-radius: 10px;
    outline: 3px #79A7D9 double;
}

.introWindow {
    border: 5px solid #ABD2F5; 
    width: 500px; 
    height: fit-content; 
    border-radius: 15px; 
    padding: 20px; 
    background-color: rgba(108, 187, 251, 0.807);
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    backdrop-filter: blur(5px);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #263652;
}

.carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 15px 0;
}

.arrow {
  cursor: pointer;
  font-size: 28px;
  user-select: none;
  color: #263652;
}

.carouselContent {
  text-align: center;
}

.songsGrid {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    row-gap: 20px;
    column-gap: 20px;
    margin-top: 20px;
    width: 100%;
    justify-content: center;
}

.songsWindow {
    border: 5px solid #ABD2F5; 
    width: 1000px; 
    height: fit-content; 
    border-radius: 15px; 
    padding: 20px; 
    background-color: rgba(108, 187, 251, 0.807);
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    backdrop-filter: blur(5px);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #263652;
}

.loadingScreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #8ec4ff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 1s ease;
}