:root {
    --font-unbounded: 'Unbounded', cursive;
    --font-poppins: 'Poppins', sans-serif;
    --font-reenie: "Reenie Beanie", cursive;
    font-size: 16px;
    font-family: var(--font-poppins);
    color: white;
}

/* Font Faces */
@font-face {
    font-family: "Lorem Ipsum";
    src: url(../fonts/Loremipsum.ttf);
    src: url(../fonts/Loremipsum.ttf) format("truetype");
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: inherit;
    font-family: inherit;
    font-size: inherit;
    list-style: none;
    color: inherit;
}

body {
    overflow-x: hidden;
}

a {
    display: inline-block;
}

button {
    cursor: pointer;
}

img {
    width: 100%;
}

.poet {
    font-family: 'Lorem Ipsum', cursive;
    font-size: 2rem;
    text-align: left;
    line-height: 1.8;
    white-space: pre-line;
    color: white;
}

.headline {
    font-family: var(--font-unbounded);
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: .5em;
    text-transform: uppercase;
}

.description {
    font-size: .9rem;
}

section {
    min-height: 100vh;
    display: grid;
    place-items: center;
    background: #FF512F;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #DD2476, #FF512F);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #DD2476, #FF512F); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.chapter-two > .container {
    max-width: 1200px;
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
}

.chapter-three > .container a > img {
    display: block;
}

.chapter-two > h2 {
    position: absolute;
    top: 0;
    left: 0;
}

.chapter-two > .container > .angel {
    width: 100%;
}

.chapter-two > .flower {
    width: 280px;
    position: absolute;
    top: 0;
    right: 100px;
}

.chapter-three {
    background: url(../images/edinburgh.jpg) no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.chapter-four {
    background: #FF5F6D;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #FFC371, #FF5F6D);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #FFC371, #FF5F6D); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

.chapter-four > .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2em;
    max-width: 1000px;
}

.chapter-four .song-details {
    flex: 1;
}

.chapter-four .song-lyrics {
    display: none;
}

.chapter-four .song-lyrics > p {
    white-space: pre-line;
}

.chapter-four .album-details {
    flex: .6;
}

.chapter-four > .container .album-cover {
   position: absolute;
   top: 0;
   z-index: 3;
   box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.chapter-four > .container .vinyl {
    flex: .3;
    max-width: 500px;
    margin: 0 auto;
    animation: rotate 2s infinite linear;
}

.chapter-four > .container .headline {
    margin-bottom: 0;
}

.chapter-four button {
    padding: .8em 2.5em;
    margin-top: 2.5em;
    border: none;
    color: black;
    text-transform: uppercase;
    font-weight: 800;
    border-radius: 30px;
    transition: .4s all ease;
}

.chapter-four button:hover {
    scale: 1.07;
}

@keyframes rotate {
    from {
        rotate: 0;
    }
    to {
        rotate: 360deg;
    }
}

.relative {
    position: relative;
}

.chapter-three::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-color: rgba(0, 0, 0, .4);
    backdrop-filter: blur(8px);
    background-attachment: fixed;
}

.chapter-three > .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    z-index: 4;
}

.chapter-three > .container > h2 {
    position: absolute;
    top: 50px;
    left: 100px;
    max-width: 650px;
    text-align: left;
    z-index: 2;
    font-size: 6rem;
    mix-blend-mode: exclusion;
}

.container {
    text-align: center;
    max-width: 800px;
    padding: 0 1em;
}

.scroll-icon {
    margin-top: 1em;
    font-size: 2rem;
}

@media (max-width: 992px) {
    .disclaimer {
        height: 100vh;
        position: fixed;
        width: 100%;
        background: white;
        top: 0;
        z-index: 10;
        color: black;
        display: grid;
        place-items: center;
        overflow-x: hidden;
        padding: 0 2em;
    }
    section {
        display: none;
    }
}

/* Responsiveness */
@media (min-width: 1024px) {
    .headline {
        font-size: 5rem;
        margin-bottom: .2em;
    }
    .description {
        font-size: 1.2rem;
    }
    .disclaimer {
        display: none;
    }
}