html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}





/*                   End of reset                  */


html {
    font-family: 'Lato', sans-serif;
    font-size: 62.5%;
    font-weight: 400;
    color: #fff;
    background-color: rgb(29, 38, 45);
    width: 100%;
    margin: 0 auto;
}

@media only screen and (max-width: 1000px) {
    html {
        font-size: 50%;
    }
}

@media only screen and (max-width: 700px) {
    html {
        font-size: 40%;
    }

    header .main-text {
        line-height: 35px;;
    }

    .main-text h1 {
        letter-spacing: 2px;
        font-weight: 400;
        font-size: 4rem;
        margin-bottom: 10px;
    }
    
    .main-text h2 {
        font-size: 4rem;
        font-weight: 400;
        margin-bottom: 20px;
    }
    
    .main-text h3 {
        font-size: 3rem;
        font-weight: 300;
        margin-bottom: 10px;
    }
    
    .main-text h3 a {
        text-decoration: underline;
        color: #A3A2FF;
    }
}

header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(images/hero.jpg);
    /* height: 100vh; */
    height: 100%;
    background-position: center;
    -o-background-size: cover; 
    -moz-background-size: cover; 
    -webkit-background-size: cover;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    margin: 0 auto;
}

@media (max-width: 600px) {
    header {
        background-attachment: scroll;
    }
}

.main-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: left;
    width: 90%;
    line-height: 45px;
}

.navigation {
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgb(34, 34, 34);
    font-size: 2rem;
    position: fixed;
    z-index: 1;
    opacity: .95;
    border-bottom: 1px solid #fff;
}

.navigation ul {
    display: flex;
    justify-content: center;
}

.navigation ul a {
    transition: .3s;
    padding: 15px 40px;
    text-decoration: none;
    color: #fff;
}

.navigation ul a:hover {
    color: #A3A2FF;
    transition: .3s;
    cursor: pointer;
}

header h1 {
    letter-spacing: 2px;
    font-weight: 400;
    font-size: 4rem;
    margin-bottom: 20px;
}

header h2 {
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 40px;
}

header h3 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 20px;
}

header h3 a {
    text-decoration: underline;
    color: #A3A2FF;
}

.section-title {
    font-size: 5rem;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 40px;
    text-align: left;
}

.about-me-section {
    padding: 100px 5%;
    background-color: rgb(31, 41, 48);
}

.about-me-container {
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    max-width: 1000px
}

#will-photo {
    width: 300px;
    border-radius: 5px;
}

.about-me-info {
    margin-left: 40px;
}

.about-me-info h2 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.about-me-info h3 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: #c2c2c2;
}

.about-me-info p {
    font-size: 2.1rem;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-me-info a {
    color: #A3A2FF; 
}

.about-me-contact {
    display: flex;
}

.contact-type {
    display: flex;
}

.contact-type:nth-child(2) {
    margin-left: 15px;
}

.contact-icon {
    font-size: 2rem;
    color: #A3A2FF;
    margin-right: 5px;
}

.contact-type h3 {
    color: #A3A2FF;
    font-size: 2rem;
    font-weight: 400;
    margin-right: 10px;
}

.contact-type h4 {
    font-size: 2rem;
    font-weight: 300;
}

.skills-section{
    background-color: rgb(29, 38, 45);
    padding: 100px 0;
    width: 90%;
    margin: 0 auto;
}

@media only screen and (max-width: 1000px) {
    .skills-section {
        padding: 60px 0;
    }
}

.skills-container {
    margin: 0 auto;
    text-align: center;
    display: flex;
    justify-content: space-around;
    max-width: 1000px
}

@media only screen and (max-width: 700px) {
    .skills-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .skills-container .technical,
    .skills-container .soft {
        width: 70%;
    }

    .skills-container .technical {
        display: flex;
        flex-wrap: wrap;
    }

    .technical .tech-skill {
        justify-content: center;
        margin: 20px 10px;
    }

    .tech-skill .skill-icon {
        margin-right: 5px;
    }
}

.technical {
    width: 50%;
}

.tech-skill {
    display: flex;
    margin: 40px 0;
}

.skill-icon {
    font-size: 3.5rem;
    margin-right: 15px;
    color: #A3A2FF;
}

.tech-skill h3 {
    font-size: 3.5rem;
    color: #A3A2FF;
}

.soft {
    width: 50%;
}

.soft-skill {
    margin: 40px 0;
    text-align: left;
}

.soft-skill h3 {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.soft-skill p {
    font-size: 2.5rem;
    font-weight: 200;
}

.project-section{
    padding: 100px 0;
    background-color: rgb(31, 41, 48);
}

@media only screen and (max-width: 1000px) {
    .project-section {
        padding: 60px 0;
    }
}

.project-background-color {
    width: 90%;
    margin: 0 auto;
}

.projects {
    margin: 40px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1000px
}

.project {
    max-width: 400px;
    max-height: 206.391px;
    margin: 0;
    position: relative;
    text-align: center;
    /* height: 100%; */
}

.project-name {
    transition: .5s;
    opacity: 0;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.2rem;
    color: #fff;
}

.view-project {
    transition: .5s;
    opacity: 0;
    position: absolute;
    top: 72%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.6rem;
    color: #fff;
}

#droom {
    background-color: #7851A9;
}

#omnifood {
    background-color: #e67e22;
}

#film {
    background-color: rgb(48, 62, 255);
}

#conway {
    background-color: #000000;
}

#sleep {
    background-color: rgb(121, 188, 196);
}

.project-image {
    opacity: 1;
    width: 100%;
    transition: opacity 0.5s;
    object-fit: cover;
}

.project:hover .project-image{
    opacity: .05;
}

#conway:hover .project-name,
#conway:hover .view-project,
#droom:hover .project-name,
#droom:hover .view-project,
#omnifood:hover .project-name,
#omnifood:hover .view-project,
#film:hover .project-name,
#film:hover .view-project,
#sleep:hover .project-name,
#sleep:hover .view-project {
    opacity: 1;
    transition: .5s;
}

footer {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 20px 0;
    background-color: rgb(34, 34, 34);
}

footer p {
    font-size: 1.8rem;
}

footer p a {
    color: #A3A2FF;
}


.link-icon { 
    color: #fff;
    transition: .3s;
    font-size: 3rem;
    margin: 0 10px;
}

.link-icon:hover {
    transition: .3s;
    color: #A3A2FF;
    cursor: pointer;
}

