@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jua&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manjari:wght@400;700&display=swap');
@font-face {
    font-family: Mikado;
    src: url("./font/MikadoBold.otf");
}

html, body {
    margin: 0;
    background: radial-gradient(50% 50% at 50% 50%, #FFFDFF 0%, #FEEAFA 100%);
}

h1 {
    font-family: 'Mikado';
    font-size: 4em;
    line-height: 0.6em;
    color: #C966B6;
    text-align: center;
}

h2 {
    font-family: 'Mikado';
    font-size: 1.6em;
    line-height: 0.5em;
    color: #C966B6;
    margin-top: 2em;
}

p {
    font-family: "Manjari";
    font-size: 1.2em;
    line-height: 1.5em;
}

a {
    color: black;
}

a:hover {
    color: #C966B6;
}

.logo-header {
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
}

.logo-header h1 {
    opacity: 70%;
}

.logo-header p{
    text-align: center;
    color: #C966B6;
    line-height: 0em;
}

#audio-play {
    position: fixed;
    z-index: 1;
}

.music-controls {
    display: flex;
    justify-content: center;
    background-color: transparent;
    width: 100%;
    position: fixed;
    z-index: 1;
    border: 0;
    margin: 0;
    top: 70%;
}

.play-button {
    background-color: transparent;
    border: transparent;
    margin-right: 6px;
    cursor: pointer;
}

.shuffle-button {
    background-color: transparent;
    border: transparent;
    margin-left: 6px;
    cursor: pointer;
}

.play-icon {
    width: 3rem;
    height: 3rem;
}

.shuffle-icon {
    width: 3rem;
    height: 3rem;
}

.button-group {
    position: absolute;
    right: 0;
    bottom: 0;
    margin-right: 4em;
    margin-bottom: 4em; 
}

.button-group button {
    cursor: pointer;
    background-color: transparent;
    border: 1px solid #C966B6;
    padding: 12px 16px;
    font-family: 'Mikado';
    font-size: 1.2em;
    color: #C966B6;
    float: left;
}

.button-group button:not(:last-child) {
    border-right: none !important;
}

#about {
    background-color: #FFECFB;
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    text-align: center;
}

#close-about {
    position: absolute;
    background-color: transparent;
    border: transparent;
    cursor: pointer;
    margin-top: 6em;
    margin-right: 15em;
    top: 0;
    right: 0;
}

#mute {
    cursor: pointer;
    background-color: transparent;
    border: 1px solid #C966B6;
    padding: 12px 16px;
    color: #C966B6;
}

.mute-icon {
    width: 1em;
    height: 1em;
    color: pink;
}

#song-info {
    position: absolute;
    left: 0;
    bottom: 0;
    margin-left: 4em;
    margin-bottom: 2.5em; 
}