body {
    background-color: black;
    color: white;
    font-size: 18px;
}

li {
    list-style-type: none;
}

/* --------------- NAVBAR --------------- */

.nav-list {
    list-style-type: none;
    display: flex;
    gap: 20px;
    margin: 0%;
    padding: 0%;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* --------------- HEADER --------------- */

h1 {
    font-size: 95px;
    text-align: center;
    color: blue;
    font-style: italic;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin-top: 180px;
    margin-bottom: 0;
}

h2 {
    font-size: 30px;
    text-align: center;
    margin-top: 0;
    margin-button: 10px;
    font-style: italic;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.cta-wrapper {
    text-align: center;
}

.cta-btn {
    background-color: rgb(255, 3, 3);
    color: white;
    border-radius: 100px;
    border-style: none;
    padding: 10px 10px;
}

.cta-link {
    color: rgb(0, 0, 0);
    font-size: 12px;
    font-weight: 900;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-decoration: none;
}

/* --------------- MAIN --------------- */

main {
    margin-top: 19%;
    background-color: rgb(22, 22, 22);
    font-family: sans-serif;
}

.greeting {
    text-align: center;
    font-size: 25px;
    color: rgb(205, 8, 8);
}

.intro-text {
    text-align: center;
}

.song-title {
    color: aqua;
}

.band-name {
    color: rgb(193, 193, 17);
}

.section-heading {
    text-align: center;
    font-size: 25px;
}

.content-block {
    text-align: center;
    list-style-type: none;
    margin: 0px;
}

.lyrics {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 50px;
}

/* --------------- VIDEO --------------- */

video {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* --------------- FOOTER --------------- */

footer {
    background-color: rgb(22, 22, 22);
}

.footer-inner h3 {
    font-size: 25px;
    text-align: center;
}

.footer-inner p {
    font-size: 18px;
    text-align: center;
}

/* --------------- RESPONSIVE --------------- */

@media (max-width: 768px) {

    h1 {
        font-size: 46px;
        margin-top: 60px;
    }

    h2 {
        font-size: 22px;
    }

    main {
        margin-top: 12%;
    }

    .nav-list {
        flex-wrap: wrap;
        gap: 10px;
        font-size: 15px;
    }

    .greeting {
        font-size: 20px;
    }

    .section-heading {
        font-size: 20px;
        padding: 0 16px;
    }

    .content-block {
        padding: 0 16px;
    }

    .lyrics {
        padding-top: 20px;
        padding-bottom: 30px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .footer-inner p,
    .footer-inner h3 {
        padding: 0 16px;
    }
}