@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Klee+One&family=Roboto+Slab:wght@100;400;700&display=swap');

:root {
    --main-yellow: #e9c46a;
    --main-blue: #264653;
    --main-green: #2a9d8f;
    --main-orange: #f4a261;
    --main-red: #e76f51;
}
 
*, *::before, *::after {
    box-sizing: inherit;
}

.navbar-nav {
    padding-left:30px;
    padding-right:30px;
  }

a {
    text-decoration: none;
}

a:hover {
    color: var(--main-blue);
}

p {
    padding: 15px;
    box-shadow: rgb(0 0 0 / 25%) 0px 25px 50px -12px;
}

img {
    margin-bottom: 15px;
    margin-left: 30px;
    margin-top: 15px;
    max-width: 100%;
    height: auto;
    contain: content;
}

body {
    background-color: none;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.4;
}

.blue {
    color: var(--main-blue);
    font-weight: 800;
}

.red {
    color: var(--main-red);
    font-weight: 800;
}

.green {
    color: var(--main-green);
    font-weight: 800;
}

.yellow {
    color: var(--main-yellow);
    font-weight: 800;
}

.orange {
    color: var(--main-orange);
    font-weight: 800;
}

.covers {
    list-style: none;
}

.red a:hover {
    color: var(--main-yellow);
}

.audio-player {
    height: 75px;
    width: 350px;
    background: var(--main-blue);
    box-shadow: 0 0 20px 0 #000a;
    color: white;
    font-size: 0.75em;
    overflow: hidden;
    display: grid;
    grid-template-rows: 6px auto;
    text-align: center;
}

.audio-player .timeline {
    background: white;
    width: 100%;
    position: relative;
    cursor: pointer;
    box-shadow: 0 2px 10px 0 #0008;
}

.audio-player .timeline .progress {
    background: var(--main-red);
    width: 0%;
    height: 100%;
    transition: 0.25s;
}

.audio-player .controls {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 0 20px;
}

.audio-player .controls > * {
    display: flex;
    justify-content: center;
    align-items: center;
}

.audio-player .controls .toggle-play.play {
    cursor: pointer;
    position: relative;
    left: 0;
    height: 0;
    width: 0;
    border: 7px solid #0000;
    border-left: 13px solid white;
}

.audio-player .controls .toggle-play.play:hover {
    transform: scale(1.1);
}

.audio-player .controls .toggle-play.pause {
    height: 15px;
    width: 20px;
    cursor: pointer;
    position: relative;
}

.audio-player .controls .toggle-play.pause:before {
    position: absolute;
    top: 0;
    left: 0px;
    background: white;
    content: "";
    height: 15px;
    width: 3px;
}

.audio-player .controls .toggle-play.pause:after {
    position: absolute;
    top: 0;
    right: 8px;
    background: white;
    content: "";
    height: 15px;
    width: 3px
}

.audio-player .controls .toggle-play.pause:hover {
    transform: scale(1.1);
}

.audio-player .controls .time {
    display: flex;
}

.audio-player .controls .time > * {
    padding: 2px;
}

.audio-player .controls .volume-container {
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.audio-player .controls .volume-container .volume-button {
    height: 26px;
    display: flex;
    align-items: center;
}

.audio-player .controls .volume-container .volume-button .volume {
    transform: scale(0.7);
}

.audio-player .controls .volume-container .volume-slider {
    position: absolute;
    top: 15px;
    left: -3px;
    z-index: -1;
    width: 0;
    height: 15px;
    background: white;
    box-shadow: 0 0 20px #000a;
    transition: 0.25s;
}

.audio-player .controls .volume-container .volume-slider .volume-percentage {
    background: var(--main-orange);
    height: 100%;
    width: 75%;
}

.audio-player .controls .volume-container:hover .volume-slider {
    left: -123px;
    width: 120px;
}

h2 {
    padding-bottom: .5em;
}
