/* Typography */
body{
    font-family: Inter, Helvetica, sans-serif;
}
h1{
    font-weight: 600;
    font-size: 24px;
    width: 100%;
}
h2{
    font-weight: 500;
    font-size: 28px;
    margin-top: 1rem;
}
h4{
    font-weight: 400;
}
ul{
    list-style: none;
}
/* Styles */
header{
    position: fixed;
    background-color: #c3d7cc;
    width: 100%;
}
.top{
    display: flex;
    justify-content: space-between;
    padding: 2rem;
    padding-bottom: 1.5rem;
}
.top i{
    padding: 1rem;
}
nav{
    width: 100%;
    display: none;
}
nav.open{
    display: block;
}
nav ul{
    display: flex;
    padding: 1.5rem;
    justify-content: space-around;
    opacity: 75%;
}
a{
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}
.top li{
    display: flex;
    justify-content: space-between;
}
.rect{
    width: 50%;
    height: 5.5rem;
}
.hero{
    background-image: url(../img/Cover.jpg);
    background-size: cover;
    background-position: center;
    padding: 35rem 1.5rem 1.5rem 1.5rem;
}
.inner, .projects{
    margin: 0 auto;
    max-width: 1280px;
}
.projects li{
    margin: 1rem;
    margin-bottom: 3rem;
}
h2{
    padding: 1.5rem;
    padding-bottom: 0rem;
}
h4{
    padding: 1.5rem;
    padding-bottom: 0rem;
}
.smaller{
    max-width: 600px;
    padding-top: 0rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}
.slider{
    margin-left: -2rem;
    max-width: 1280px;
}
.menu-button:hover{
    cursor:pointer;
}
/* Project Pages */
.process li, .process-app, .process1 li, .process2 li{
    margin: 1rem 1rem 2rem -1rem;
}
.process, .process-app, .process1, .process2{
    margin-bottom: 5rem;
}
.process li{
    border: rgba(0, 0, 0, .25) 1px solid;
}
.project-link, .project-link1, .project-link2, .project-link3, .project-link4{
    margin-left: 1.5rem;
}
.project-link:hover{
    color: #c3b3a4;
    font-style: italic;
    text-transform: uppercase;
}
.project-link1:hover{
    color: #254d32;
    font-style: italic;
    text-transform: uppercase;
}
.project-link2:hover{
    color: #d99108;
    font-style: italic;
    text-transform: uppercase;
}
.project-link3:hover{
    color: #f366d5;
    font-style: italic;
    text-transform: uppercase;
}
.project-link4:hover{
    color: #d4bf88;
    font-style: italic;
    text-transform: uppercase;
}
.video{
    aspect-ratio: 16 / 9;
    height: 100%;
    width: 100%;
}
.app{
    aspect-ratio: 1 / 1;
    height: 100%;
    width: 100%;
}
.hero2{
    background-image: url(../img/Me/LaptopMockup.png);
    background-size: cover;
    background-position: center;
    padding: 35rem 1.5rem 1.5rem 1.5rem;
}
.hero3{
    background-image: url(../img/FootLocker/LaptopMockup.png);
    background-size: cover;
    background-position: center;
    padding: 35rem 1.5rem 1.5rem 1.5rem;
}
.hero4{
    background-image: url(../img/Lenovo/desktophero.jpg);
    background-size: cover;
    background-position: center;
    padding: 35rem 1.5rem 1.5rem 1.5rem;
}
.hero5{
    background-image: url(../img/PhoneMockup.png);
    background-size: cover;
    background-position: center;
    padding: 35rem 1.5rem 1.5rem 1.5rem;
}
/* Footer */
footer{
    background-color: #c3d7cc;
    padding: 2rem;
}

@media screen and (min-width: 800px) {
    header .inner{
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    .process, .process-app, .process1, .process2{
        display: grid;
        grid-auto-rows: 1fr;
        grid-template-columns: 1fr 1fr;
        margin-left: -2rem;
    }
    .process li, .process-app li, .process1 li, .process2 li{
        margin: 1rem;
    }
    .menu-button{
        display: none;
    }
    nav{
        display: block;
        width: 50%;
        padding-top: .5rem;
    }
}
@media screen and (min-width: 1000px) {
    header .inner{
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    .process, .process-app, .process1, .process2{
        display: grid;
        grid-auto-rows: 1fr;
        grid-template-columns: 1fr 1fr 1fr;
        margin-left: -2rem;
    }
}