*{
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #333;
    color: #fff;
    line-height: 1.6;
    height: 100vh;
    overflow: hidden;
}

.container {
    width: 100%;
    height: 100%;
    /* CSS Smooth Scoll */
    overflow-y: scroll;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    background: linear-gradient(60deg, rgba(0,0,0,0.75), rgba(20,20,20,0.35)),
                url('images/Asset 1@0.5x.png');
}
.navbar {
    position: fixed;
    top: 0;
    z-index: 1;
    display: flex;
    width: 100%;
    height: 50px;
    background: rgba(255,255,255,0.9);
}

.navbar ul {
display: flex;
list-style: none;
width: 100%;
justify-content: center;
font-size: 0.75em;
font-weight: bold;
}

.navbar li {
    margin: 0 1rem;
    padding: 1rem;
}

.navbar ul li a {
    text-decoration: none;
    text-transform: uppercase;
    color: #000000;
}

.navbar ul li a:hover {
    color: gray;
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100vh;
    scroll-snap-align: center;
}

section h1 {
    font-size: 3.5rem
}

section p {
    font-size: 1.25rem;
    width: 80vw;
    text-align: left;
}

#mlogo {
    width: 18em;
}

#photo {
    width: 12em;
    border-radius: 50%;
    border: white 5px solid;
}
#project-list {
    width: 80vw;;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}
.project-card {
    height: 250px;
    width: 250px;
    min-height: 200px;
    min-width: 200px;
    max-height: 40vh;
    display: flex;
    justify-content: center;
    border: 5px white solid;
    border-radius: 1em;
    margin-top: 2rem;
}

.project-card.defuse-or-lose {
    background: linear-gradient(rgba(255,255,255,0.75), rgba(255, 255, 255, 0.35)),
                url('images/diffuseOrLoseImage.png');
    background-size: 95%;
    background-position: center;
}

.project-card.inventory-tracker{
    background: linear-gradient(rgba(255,255,255,0.75), rgba(255, 255, 255, 0.35)),
    url('images/LevelsAppWireframe.png');
    background-size: 150%;
    background-position: center;
}
.project-thumbnail img{
    width: 20vw;
    max-width: 30vh;
    max-height: 30vh;
    border-radius: 1em 0 0 1em;
}
.project-image{
    max-height: 40vh;
    max-width: 80vw;
    border-radius: 1em;
}

.project-description {

    color: black;
}
.project-description p{
    width: 100%;
    padding: 0 1em;
    font-size: 1em;
}

a {
    text-decoration: none;
}

div.process-images img{
    height: 20vh;
    border-radius: 0.5em;
}
div.project-links{
    padding-top: 1em;
}
div.process-images{
    width: 80vw;
    display: flex;
    justify-content: space-evenly;
    margin: 1em;
}
.project-links a{
    background: white;
    padding: 0.5em;
    margin: 5px 10px;
    border-radius: 0.5em;
    text-decoration: none;
    color: black;

}

div.contact-links {
    width: 50vw;
    display: flex;
    justify-content: space-evenly;
    margin-top: 10vh;
}

.contact-links img{
    height: 5vh;
}
/* Section Images */
/* section#home {
    background: url('https://source.unsplash.com/bZZp1PmHI0E/1600x900') no-repeat center center/cover;;
  }
  
  section#about {
    background: url('https://source.unsplash.com/VRxo0yY-gyM/1600x900') no-repeat center center/cover;;
  }
  
  section#projects {
    background: url('https://source.unsplash.com/K2tdx2mFDHc/1600x900') no-repeat center center/cover;;
  }
  
  section#contact {
    background: url('https://source.unsplash.com/2aAHlfDOhJM/1600x900') no-repeat center center/cover;;
  } */