html,
body {
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Fonts */
h1,
h2,
h3,
h4,
ul li {
    font-family: "Finger Paint", sans-serif;
}

p,
blockquote {
    font-family: "Lexend Exa", sans-serif;
    font-size: smaller;
}

/* Navigation */
.responsive-nav {
    background-color: black;
    text-align: left;
    position: sticky;
    z-index: 2;
    top: 0;
}

.responsive-nav .hamburger {
    font-size: 1.5em;
    color: white;
    background-color: transparent;
    cursor: pointer;
    border: none;
}

.responsive-nav .nav-items {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
}

.responsive-nav li {
    padding: 0.5em;
}

.responsive-nav a {
    text-decoration: none;
    color: white;
}

/* Header */
header {
    background-image: url(../media/header-copy.jpg);
    background-position: top;
}

.profile-image {
    width: 100%;
}

.introduction h2 {
    text-align: center;
}

blockquote {
    font-size: smaller;
    margin-top: 2px;
}

ul {
    list-style-type: none;
    text-align: start;
}

a {
    text-decoration: none;
    color: inherit;
}

p {
    margin: 10px;
    text-align: start;
}

/* Media */
picture img:hover,
.gallery img:hover {
    transform: scale(1.1);
    transition: ease-in-out 1s;
    border: none;
    box-shadow: none;
}

iframe {
    border: 0;
    width: 100%;
}

/* Footer */
footer {
    background-color: black;
    color: white;
}

footer p {
    text-align: center;
}

/* Mobile first styling */
/* if width is between 0 to 480px for smaller screen to 800px for larger screen */
@media screen and (max-width: 800px) {

    main {
        font-size: 1em;
        line-height: 1.6em;
        box-sizing: border-box;
        display: grid;
        grid-template-columns: 1fr;
    }

    header h1 {
        font-size: larger;
    }

    /* Main page styling */
    .content {
        display: grid;
        place-items: center;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 10px;
        padding: 10px;
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
    }

    .introduction {
        grid-row: 1;
        background-color: black;
        color: white;
        padding: 1em;
        margin-bottom: 1em;
    }

    .imageb {
        grid-row: 2;
        width: 100%;
        max-width: 400px;
    }

    .early-life {
        grid-row: 3;
    }

    .rise-to-fame {
        grid-row: 4;
    }

    .imagea {
        grid-row: 5;
        width: 100%;
        max-width: 400px;
    }

    .artistic-style {
        grid-row: 6;
    }

    .main-video {
        width: 100%;
        max-width: 400px;
        grid-row: 7;
    }


    /* Art gallery page styling */
    .gallery {
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
        padding: 1em;
    }

    .gallery img {
        width: 80%;
        max-width: 400px;
        padding: 1em;
        box-sizing: border-box;
        border: solid black 0.5px;
        box-shadow: 2px 2px 1px 1px yellow;
    }

    /* Untitled page styling */
    .untitled {
        max-width: 800px;
        margin: auto;
        display: grid;
        grid-template-columns: 1fr;
        padding: 1em;
    }

    .untitled img {
        grid-row: 1;
        width: 100%;
        max-width: 400px;
        padding: 1em;
        box-sizing: border-box;
        border: solid black 1px;
        box-shadow: 3px 3px 2px 2px yellow;
    }

    .untitled-info {
        font-size: x-small;
        grid-row: 2;
    }

    .untitled-text {
        line-height: 1.6em;
        grid-row: 3;
        max-width: 800px;
        background-color: black;
        color: white;
        padding: 10px;
        border: solid yellow 1px;
        box-shadow: 3px 3px 2px 2px yellow;
    }
}

/* Medium styling */
/* if width is between 800px to 1280px */
@media screen and (min-width: 800px) and (max-width: 1280px) {

    main {
        font-size: 1.4em;
        line-height: 1.4em;
        box-sizing: border-box;
        display: grid;
        grid-template-columns: 1fr;
    }

    header h1 {
        font-size: x-large;
    }

    /* Navigation styling */
    .responsive-nav .hamburger {
        display: none;
    }

    .responsive-nav .nav-items {
        display: flex;
        flex-direction: row;
    }

    /* Main page styling */
    .content {
        display: grid;
        place-items: center;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 10px;
        margin: 0px auto;
        padding: 20px;
        box-sizing: border-box;
        width: 100%;
        max-width: 1000px;
    }

    .introduction {
        grid-row: 1;
        background-color: black;
        color: white;
        width: 100%;
        max-width: 1000px;
        padding: 1em;
        margin-bottom: 1em;
    }

    .imageb {
        grid-row: 2;
        width: 100%;
        max-width: 600px;
    }

    .early-life {
        grid-row: 3;
    }

    .imagea {
        grid-row: 5;
        width: 100%;
        max-width: 600px;
    }

    .rise-to-fame {
        grid-row: 4;
    }

    .artistic-style {
        grid-row: 6;
    }

    .main-video {
        width: 100%;
        max-width: 1000px;
        grid-row: 7;
    }

    /* Art gallery styling */
    .gallery {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        padding: 2em;
    }

    .gallery img {
        width: 80%;
        max-width: 600px;
        padding: 2em;
        box-sizing: border-box;
        border: solid black 1px;
        box-shadow: 3px 3px 2px 2px yellow;
    }

    /* Untitled page styling */
    .untitled {
        display: grid;
        max-width: 1200px;
        margin: auto;
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 1em;
    }

    .untitled img {
        grid-row: 1;
        width: 100%;
        max-width: 600px;
        padding: 1em;
        box-sizing: border-box;
        border: solid black 1px;
        box-shadow: 3px 3px 2px 2px yellow;
    }

    .untitled-info {
        font-size: small;
        grid-row: 2;
    }

    .untitled-text {
        line-height: 1.5em;
        grid-row: 3;
        max-width: 1200px;
        background-color: black;
        color: white;
        padding: 10px;
        border: solid yellow 1px;
        box-shadow: 3px 3px 2px 2px yellow;
    }
}



/* Large styling */
/* if width is 1280 or larger */
@media screen and (min-width: 1280px) {

    main {
        font-size: 1.2em;
        line-height: 1.2em;
        box-sizing: border-box;
        display: grid;
        grid-template-columns: 1fr;
    }

    header h1 {
        font-size: xx-large;
    }

    /* Navigation styling */
    .responsive-nav .hamburger {
        display: none;
    }

    .responsive-nav .nav-items {
        display: flex;
        flex-direction: row;
    }

    /* Main page styling */
    .content {
        display: grid;
        place-items: center;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1em;
        gap: 10px;
        margin: 0px auto;
        padding: 70px;
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
    }

    .introduction {
        position: relative;
        top: -100px;
        grid-column: 1/2;
        grid-row: 1;
        background-color: black;
        color: white;
        padding: 20px;
        box-sizing: border-box;
        width: 100%;
        max-width: 1000px;
    }

    .imageb {
        grid-column: 2/3;
        grid-row: 2;
        width: 100%;
        max-width: 600px;
    }

    .early-life {
        grid-column: 1/2;
        grid-row: 2;
    }

    .imagea {
        grid-column: 1/2;
        grid-row: 3;
        width: 100%;
        max-width: 600px;
    }

    .rise-to-fame {
        grid-column: 2/3;
        grid-row: 3;
    }

    .artistic-style {
        grid-column: 1/2;
        grid-row: 4;
    }

    .main-video {
        width: 100%;
        max-width: 700px;
        grid-column: 2/3;
        grid-row: 4;
    }

    /* Art gallery styling */
    .gallery {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        align-items: center;
    }

    .gallery img {
        width: 80%;
        max-width: 1000px;
        padding: 2em;
        box-sizing: border-box;
        border: solid black 1px;
        box-shadow: 3px 3px 2px 2px yellow;
    }

    .gallery-video {
        width: 100%;
        text-align: center;
        padding-top: 10px;
        border: solid black 1px;
        background-color: black;
        color: white;
    }

    /* Untitled page styling */
    .untitled {
        display: grid;
        max-width: 1280px;
        margin: auto;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 1em;
    }

    .untitled img {
        grid-column: 1/3;
        width: 100%;
        max-width: 800px;
        padding: 1em;
        box-sizing: border-box;
        border: solid black 1px;
        box-shadow: 3px 3px 2px 2px yellow;
    }

    .untitled-info {
        font-size: small;
        grid-column: 1/2;
        grid-row: 2;
        margin-top: 10px;
    }

    .untitled-text {
        line-height: 1.4em;
        grid-column: 2/3;
        grid-row: 1/3;
        max-width: 800px;
        margin-left: 30px;
        background-color: black;
        color: white;
        padding: 10px;
        border: solid yellow 1px;
        box-shadow: 3px 3px 2px 2px yellow;
    }

}