
*
{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html
{
    background-color: black;
}

body
{
    color: white;
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
}


/* Images */

img
{
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.hero-image{
display: block;
width: 100%;
height: auto;
max-width: 100%;
margin: 0 auto;
}

/* Typography */

h1,
h3,
h4,
h6,
p,
footer
{
    font-family: "Google Sans Flex";
}

h1
{
    font-size: 23px;
    font-family: "Almarai";
}

h3
{
    font-size: 14px;
    font-weight: lighter;
}

h4
{
    font-size: 40px;
}

h6
{
    font-size: 10px;
    font-weight: lighter;
}

p
{
    font-size: 18px;
    font-weight: 150;
    text-align: left;
}

footer
{
    font-size: 12px;
    font-weight: normal;
    font-family: "Castoro Titling";
}


/* Navigation */

.nav
{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 30px;
    margin-top: 30px;
}

.nav-right
{
    display: flex;
    align-items: center;
    gap: 20px;
}

.Emmanuel-Mason-Link,
.About-Me-Link,
.Work-Link,
.Discourse-Link
{
    font-weight: bold;
    color: white;
    text-decoration: none;
    transition: opacity 0.7s ease;
}

.Emmanuel-Mason-Link:hover,
.About-Me-Link:hover,
.Work-Link:hover,
.Discourse-Link:hover
{
    opacity: 0.7;
    color: rgba(255, 255, 255, 0.7);
    background-color: rgba(255, 255, 255, 0.04);
}

.Emmanuel-Mason-Link:visited,
.About-Me-Link:visited,
.Work-Link:visited,
.Discourse-Link:visited
{
    color: white;
}


/* Project Header */

.project-header
{
    text-align: center;
    margin-top: 60px;
    margin-bottom: 60px;
}

.project-header h3
{
    margin-top: 0px;
}


/* Project Content */

.project-content
{
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.project-content h4
{
    margin-bottom: 30px;
}

.project-content p
{
    margin-left: 20%;
    margin-right: 20%;
    margin-bottom: 25px;
}

.project-content a
{
    color: white;
}


/* Footer */

footer
{
    margin-top: 10vh;
    margin-right: 0;
    margin-bottom: 20px;
    margin-left: 10px;
}
