:root {
    --main-dark-gray: #808080;
    --main-gray: #999999;
    --main-light-gray: #d0d0d0;
    --main-background: #ececec;
}

@font-face {
    font-family: 'Pacifico';
    src: url('pacifico.woff') format('woff');
}

@font-face {
    font-family: 'PT Sans';
    src: url('ptsans.woff') format('woff');
}

/* 
    All Elements
*/
* {
    font-family: 'PT Sans';
    box-sizing: border-box;
}

/* 
    Header style
*/
header {
    width: 100%;
    background-color: #000000;
    color: white;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 20px;
    padding-right: 20px;
}

/* 
    Body style
*/
body {
    padding: 0;
    margin: 0;
    background-color: var(--main-background);
}

.max-width {
    max-width: 1080px;
}

/* 
    Margin left and right auto
*/
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}


/* 
    Flex style
*/
.flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.justify-center {
    justify-content: center;
}

.items-center {
    align-items: center;
}


/* 
    Hamburger Icon
*/
.hamburger-icon {
    width: 21px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 3px;
}

.hamburger-line {
    width: 100%;
    height: 100%;
    background-color: var(--main-gray);
}

.main-dark-gray {
    color: var(--main-dark-gray);
}

.main-gray {
    color: var(--main-gray);
}

/* 
    Banner style
*/
.banner {
    width: 100%;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 3px 3px rgba(0, 0, 0, .50);
    z-index: 1;
    position: relative;
}

.title-bar {
    width: 100%;
    height: 210px;
    background-color: #CC3333;
    z-index: 0;
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
    color: white;
    text-shadow: 0 2px 0px black;
}

.title {
    font-family: 'Pacifico';
    font-size: 32px;
    word-spacing: 0;
    margin: 0;
    padding-left: 5px;
}

.sub-title {
    font-size: 28px;
    font-weight: bold;
    font-family: 'Pacifico';
}

.add-to-cart {
    background-color: #B23434;
    box-shadow: 0 3px 2px rgba(0, 0, 0, .3);
    width: 100%;
    border: none;
    padding: 18px;
    font-weight: 900;
    color: white;
    margin-top: 20px;
    font-size: 16px;
    cursor: pointer;
    text-shadow: 0 2px 0px black;
}

.album-group {
    box-shadow: 0 0 2px black;
    border-radius: 10px;
    transform-style: preserve-3d;
    width: 225px;
    height: 225px;
    position: relative;
    transition: .5s linear;
}

.album-group:hover {
    transform: rotateY(-180deg);
}

li::marker {
    content: ',,';
    font-size: 32px;
    color: var(--main-light-gray);

}

.album {
    width: 100%;
    height: 100%;
    background-image: url('disc-cover.png');
    background-size: contain;
    border-radius: 10px;
    position: absolute;
    overflow: hidden;
    transform: translateZ(1px);
}


.album-background {
    width: 100%;
    height: 100%;
    position: absolute;
    transform: translateZ(0px) rotateY(180deg);
}

.white-cover {
    padding-left: 10px;
    padding-right: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    position: absolute; 
    width: 100%; 
    height: 100%;
    border-radius: 10px;
}

.album-sticker {
    background-color: rgba(255, 0, 0, .7);
    text-align: center;
    color: white;
    font-weight: bold;
    position: absolute;
    top: 20px;
    left: -105px;
    padding: 10px 10px;
    width: 300px;
    transform: rotate(-40deg);
}

.go-to-album {
    display: block;
    background-color: #CC3333;
    border: none;
    color: white;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}
.go-to-album:hover {
    background-color: rgb(204 51 51 / 80%);
}

.music-bar-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.music-bar {
    background-color: #fac7d2;
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 1fr 3fr;
    width: 100%;
    overflow: hidden;
}

.music-bar-title {
    font-weight: bold;
    font-family: 'Pacifico';
    padding: 0;
    margin: 0;
    line-height: 16px;
    font-size: 18px;
}

.music-bar-content {
    font-size: 10px;
}

.music-bar-sticker {
    background-color: rgba(255, 0, 0, .7);
    text-align: center;
    color: white;
    position: absolute;
    top: 15px;
    left: -130px;
    padding: 2px 10px;
    width: 300px;
    font-size: 8px;
    transform: rotate(-45deg);
    letter-spacing: 0.05rem;
}

.play-icon {
    width: 48px;
    height: 48px;
}

.list-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--main-light-gray);
    margin-top: 70px;
}

.list-item {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 5px;
    color: #CC3333;
    font-weight: bold;
    border-bottom: 1px solid var(--main-light-gray);
}

.triangle {
    width: 1px;
    height: 1px;
    border-left: 10px transparent;
    border-right: 10px transparent;
    border-bottom: 10px #CC3333;
}

.form-text {
    width: 100%;
    background-color: white;
    box-shadow: 0 0 2px black inset;
    border: none;
    padding: 10px;
    font-size: 14px;
}

footer {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    color: white;
}

@media (min-width: 800px) {
    .music-bar-container {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        justify-content: center;
        align-items: center;
    }
}