* {
    padding: 0;
    margin: 0;
}

html {
    font-family: 'Inria Sans', sans-serif;
    background-color: black;
    color: white;
}

a, a:visited, a:hover, a:active {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Josefin Sans', sans-serif;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    position: fixed;
    background-color: black;
}

nav #nav-wrapper { 
    display: flex;
    margin-left: auto;
    margin-right: auto;
}
nav #nav-wrapper a {
    padding: 25px 5%;
}
nav p {
    color: white;
    font-family: 'Inria Serif';
}

nav #MJ-icon p {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    padding: 25px 75px;
}

.landing-page {
    display: inline-flex;
    align-items: center;
    flex-direction: row;

    width: 100%;
    height: 900px;
}

.landing-page #intro-image {
    background-image: url('../assets/mj-bw.jpg');
    background-repeat: no-repeat;
    background-size: 1300px 750px;
    background-position: left -150px top 275px;
    background-color: black;

    width: 55%;
    height: 100%;
}

.landing-page #intro-title {
    background-color: white;

    width: 45%;
    height: 100%;
}
.landing-page #intro-title h1 {
    margin-top: 50vh;

    font-weight: 500;
    font-size: 7vw;
    text-align: center;
    color: black;
}

.content-page {
    text-align: center;
    padding: 25px;
    margin: 0px 15%;
}

.content-page h2 {
    margin: 75px 0px;
}

.content-page #timeline {
    display: flex;

    text-align: center;
}

.content-page .slide {
    margin-bottom: 150px;
}

#gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#gallery .photo {
    width: 600px;
    height: 600px;
    background-size: cover;
    background-repeat: no-repeat;
    
    margin: 50px 0px;
}

#gallery #photo-1 {
    background-position: right top 10px;
    background-image: url('../assets/R.jpg')
}

#gallery #photo-2 {
    background-image: url('../assets/tall-jump.jpg')
}

#gallery #photo-3 {
    background-image: url('../assets/tall-short.jpg')
}