* {
    padding: 0;
    margin: 0;
}

.jumbotron {
    height: 90vh;
    padding: 50px;
    color: white;
    background-color: var(--dark);
}

.jumbotron .content {
    position: absolute;
    z-index: 2;
    top: 60vh;
    left: 15vw;
    display: flex;
    gap: 10px;
    width: 70%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.jumbotron .content .button {
    align-self: center;
    position: relative;
    width: 150px;
}

.jumbotron .button:hover {
	color: rgb(39, 39, 39);
    background-color: aliceblue;
	cursor: pointer;
}

.jumbotron h1 {
    background-color: var(--dark);
    padding: 10px;
}

.content .button {
    width: fit-content;
    border-color: var(--dark);
    color: white;
    background-color: var(--dark);
}

.jumbotron img {
    position: relative;
    z-index: 1;
    filter: hue-rotate(300deg) blur(8px);
    object-fit: cover;
    object-position: 0% 45%;
    width: 100%;
    height: 100%;
}

section.track {
    gap: 10px;
    display: grid;
    grid-template-columns: auto auto;
}

section.track .album {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: fit-content;
    gap: 10px;
    padding: 30px;
    border-radius: 20px;
    box-sizing: border-box;
    align-items: center;
}

section.track p {
    margin-block: 10px;
}

.track ul {
    display: flex;
    flex-direction: row;
    position: relative;
    justify-content: space-around;
    grid-column: 1 / 3;
    width: 70%;
    margin-inline: auto;
    border: 0;
    text-decoration: underline;
    background-color: rgba(0, 0, 0, 0);
}

.track ul li:hover {
	color: gray;
	cursor: pointer;
}

.track ul li {
    position: relative;
}

.album img {
    grid-area: img;
    border-radius: 10px;
}

.album h2 {
    grid-area: title;
}

.album .tracks {
    grid-area: sides;
    box-sizing: border-box;
    height: 100%;
    display: grid;
    grid-template-areas: 'title';
    width: 100%;
}

.album .tracks h3 {
    margin-block: 2px;
    text-align: left;
}

.album .tracks ul {
    margin-inline-start: 40px;
    list-style: decimal;
    margin-block-end: 20px;
}

.album .tracks li {
    margin-block: 5px;
}

.album .tracks li:hover {
    color: darkgrey;
    cursor: pointer;
}

.album .tracks iframe {
    width: 500px;
}

audio {
    margin-block: 20px;
    width: 100%;
    border-radius: 20px;
}

@media only screen and (max-width: 820px) {
    section.track {
        gap: 10px;
        display: flex;
    }

    .track ul {
        width: 100%;
    }

    .album img {
        width: 70%;
        margin-block: 20px;
    }

    .album .tracks {
        width: 400px;
    }

    section.track .album {
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: left;
    }
}

@media only screen and (max-width: 620px) {
    .jumbotron {
        padding: 30px;
    }

    .jumbotron img {
        object-position: 50%;
    }

    section.track .album {
        gap: 5px;
    }

    section.track {
        padding: 30px;
    }

    .album .tracks {
        width: 100%;
    }

    .album .tracks {
        display: flex;
        flex-direction: column;
    }
}

@media only screen and (max-width: 420px) {
    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 17px;
    }

    h3 {
        font-size: 15px;
    }

    li {
        font-size: 12px;
    }

    section p {
        font-size: 0.8em;
    }
}