body {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 16px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    color: #fff;
    margin: 0;
    padding: 0;
}


/* Cover Page Styling */
#cover-page {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0)), url("../images/keyur_1200px_2x.jpg");
    background-image: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0)), -webkit-image-set(url("../images/keyur_600px.jpg") 1x, url("../images/keyur_1200px_2x.jpg") 2x);
    background-size: cover;
    background-position: top;
    background-attachment: fixed;
}

header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 80px;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    position: fixed;
    top: 0;
    background-color: rgba(255, 228, 196, 0);
}

.logo-anchor {
    width: 50%;
}

.logo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-start;
    padding-left: 3em;
    padding-top: 1em;
    padding-bottom: 1em;
    cursor: pointer;
}

.hamburger-menu {
    width: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-right: 3em;
    padding-top: 1em;
    padding-bottom: 1em;
    cursor: pointer;
}

.cover-page-icons {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 0.2em 0.5em 0.2em 0.5em;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    font-size: 2em;
}

.cover-page-icons:hover {
    box-shadow: 1px 1px 20px rgba(255, 255, 255, 0.1);
}

#nav-menu {
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transform: translateX(400px);
    -ms-transform: translateX(400px);
    transform: translateX(400px);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    background-color: rgba(0, 0, 0, 1);
    width: 250px;
    height: 250px;
    padding: 0;
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
}

#nav-menu.active {
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
}

.close-icon {
    width: 100%;
    text-align: right;
    padding-right: 1em;
    font-size: 1.1em;
    cursor: pointer;
}

#nav-menu .menu-link:first-of-type {
    padding-top: 0;
}

#nav-menu .menu-link {
    text-decoration: none;
    color: inherit;
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 1.5em;
    padding-bottom: 2em;
    padding-left: 1em;
    font-size: 1.1em;
}

#nav-menu .menu-link:last-of-type {
    border-bottom: none;
}

.about-me {
    width: 100%;
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
    padding: 0 11em 1em 11em;
}

.about-me h1 {
    text-align: center;
    font-weight: 400;
    font-size: 2.5em;
    line-height: 5px;
    margin: 0 0 0.7em 0;
}

.title-location {
    text-align: center;
    font-size: 1.2em;
    font-weight: 300;
}

.underline {
    width: 70%;
}

.about-me p {
    font-size: 1.3em;
    font-weight: 100;
    text-align: center;
    line-height: 1.4em;
}


/*  Projects Section  */

#my-projects {
    background-color: #c0392b;
    width: 100%;
    height: 100%;
    padding: 4em 5em 1em 5em;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

#my-projects h1 {
    width: 100%;
    font-size: 2.5em;
    font-weight: 400;
    text-align: center;
}

.project {
    padding: 2em;
    width: 300px;
    height: 300px;
}

.project a:link, a:visited {
    text-decoration: none;
    color: #fff;
}

.project-screenshot {
    width: 100%;
    height: 200px;
    /*    -webkit-filter: brightness(0.9);*/
    box-shadow: 5px 5px 50px rgba(0, 0, 0, 0.4);
}

.project-description h2 {
    text-align: center;
    margin: 0.5em;
}

.project-description p {
    text-align: center;
    margin: 0.5em;
}


/*  Contact Me Section  */

#contact-me {
    width: 100%;
    height: 100%;
    background-color: #f2f1ef;
    color: #c0392b;
    padding: 4em 5em 4em 5em;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

#contact-me h1 {
    width: 100%;
    font-size: 2.5em;
    font-weight: 400;
    text-align: center;
}

.social-card {
    width: 10em;
    margin-bottom: 2em;
    margin-top: 2em;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.social-links {
    text-decoration: none;
    color: inherit;
    font-weight: 100;
}

.social-links:hover {
    -webkit-filter: drop-shadow(10px 5px 10px rgba(0, 0, 0, 0.4));
}

.social-icons {
    font-size: 5em;
}


/*      Footer     */

footer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    background-color: #000;
    padding: 1em 2.5em 1em 2.5em;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.footer-content {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-weight: 100;
    font-size: 1.3em;
    color: rgba(255, 255, 255, 0.6);
}

footer a {
    text-decoration: none;
    color: inherit;
}

.link-to-top {
    width: 50%;
    text-align: left;
}

.copyright {
    width: 50%;
    text-align: right;
}