/*this is desktop first as recruiter may mainly look at the desktop version */
/*see below for mobile and tablet version*/

body    {
    background-color: black;
    color: #c5c2c2;
    font-family: 'Marcellus', serif;
    font-size: 26px;
}
a {
    text-decoration: none;
    color: #c5c2c2;
    font-weight:normal;
}
a:hover {
    transform: scale(1.3);
}
a:active {
    color: #caa4a4;
}
.navbar {
    height: 80px ;
    margin-left: 20px;
    margin-right: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 24px;
    font-weight: lighter;
}
.navbar .icon {
    display: none;
}
.activelink {
    color: chocolate;
}
.main_section {
    height: 750px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    margin-left: 40px;
    margin-right: 40px;
    column-gap: 20px;
}
.photo {
    border-radius: 50%;
}
.about_container {
    height: 750px;
    margin-left: 20px;
    margin-right: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.aboutme {
    margin-right: 200px;
    text-align: left;
    font-size: 24px;
}
.languages {
    border-radius: 50%;
}
.resume {
    font-size: 24px;
}
.resume a {
    text-decoration: underline;
}
.resume a:hover {
    font-size: 24px;
}
.contactme {
    height: 750px;
    margin-left: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.email {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px;
}
.phone {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 25px;
}
.linkedin {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 25px;
}
.contact_icon {
    margin-right: 30px;
}
.header {
    height: 100px;
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}
.header a {
    text-decoration: underline;
}
.header a:hover {
    font-size: 26px;
}
.projects_container {
    height: 900px;
    font-size: 26px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
    column-gap: 80px;
    row-gap: 50px;
}
.projects_container a {
    text-decoration: underline;
}
.projects_container a:hover {
    font-size: 26px;
}
.ecommerce {
    height: 300px;
    width: 500px;
}
.harrypotter {
    height: 300px;
    width: 500px;
}
.solarbright {
    height: 300px;
    width: 500px;
}
.shopify {
    height: 300px;
    width: 500px;
}
.project_img {
    width: 400px;
    height: 200px;
}
footer {
    height: 80px;
    margin-left: 20px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.social {
    margin-right: 80px;
}

/*mobile version*/
@media only screen and (max-width: 480px) {
    body    {
        background-color: black;
        color: #c5c2c2;
        font-family: 'Marcellus', serif;
        font-size: 22px;
    }
    hr {
        display: none;
    }
    .navbar a {
        display: none;
    }
    .navbar a.icon {
        position: absolute;
        left: 40px;
        display: block;
        color: #c5c2c2;
        width: 17.16px;
        height: 25px;
    }
    .navbar.responsive {
        display: flex;
        background-color:#c5c2c2;
        height: 250px;
        margin-top: 20px;
        flex-direction: column;
        row-gap: 30px;
        align-items: flex-start;
    }
    .navbar.responsive a.icon {
        display: none;
    }
    .navbar.responsive a {
        float: none;
        display: flex;
        flex-direction: column;
        text-align: left;
        color: black;
    }
    .icon   {
        color: #c5c2c2;
    }
    .main_section {
        font-size: 18px;
    }
    .photo {
        border-radius: 50%;
        width: 100px;
        height: 100px;
    }
    .about_container {
        width: 100%;
        height: 750px;
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        margin-right: 0px;
        margin-left: 0px;
        margin-bottom: 50px;
        margin-top: 70px;
    }
    .aboutme {
        width: 100%;
        font-size: 18px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin-left: 180px;
    }
    .language_photo {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .languages {
        border-radius: 50%;
        width: 100px;
        height: 100px;
    }
    .resume {
        font-size: 16px;
    }
    .resume a {
        text-decoration: underline;
    }
    .resume a:hover {
        font-size: 16px;
    }
    .contactme {
        height: 750px;
        margin-left: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        font-size: 18px;
    }
    .email {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 20px;
    }
    .phone {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 25px;
    }
    .linkedin {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 25px;
    }
    .contact_icon {
        margin-right: 30px;
    }
    .header {
        height: 100px;
        margin-top: 20px;
        margin-left: 10px;
        margin-right: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        font-size: 20px;
        text-align: center;
    }
    .header a {
        text-decoration: underline;
    }
    .header a:hover {
        font-size: 34px;
    }
    .projects_container {
        height: 750px;
        font-size: 18px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        row-gap: 70px;
        column-gap: 50px;
    }
    .projects_container a {
        text-decoration: underline;
    }
    .projects_container a:hover {
        font-size: 18px;
    }
    .ecommerce {
        height: 80px;
        width: 140px;
    }
    .harrypotter {
        height: 80px;
        width: 140px;
    }
    .solarbright {
        height: 80px;
        width: 140px;
    }
    .shopify {
        height: 80px;
        width: 140px;
    }
    .project_img {
        width: 110px;
        height: 70px;
    }
    footer {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .social {
        margin-right: 0px;
        padding: 40px;
    }
}

/*tablet version*/
@media only screen and (max-width: 912px) {
    body    {
        background-color: black;
        color: #c5c2c2;
        font-family: 'Marcellus', serif;
        font-size: 26px;
    }
    .burger {
        display: none;
    }
    a {
        text-decoration: none;
        color: #c5c2c2;
        font-weight:normal;
    }
    a:hover {
        transform: scale(1.3);
    }
    .navbar {
        height: 70px ;
        margin-left: 10px;
        margin-right: 10px;
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
        font-size: 20px;
        font-weight: lighter;
    }
    .main_section {
        font-size: 20px;
    }
    .photo {
        border-radius: 50%;
        width: 100px;
        height: 100px;
    }
    .about_container {
        width: 100%;
        height: 750px;
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        margin-right: 0px;
        margin-left: 0px;
        margin-bottom: 50px;
        margin-top: 50px;
    }
    .aboutme {
        width: 100%;
        font-size: 18px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin-left: 180px;
    }
    .language_photo {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .languages {
        border-radius: 50%;
        width: 100px;
        height: 100px;
    }
    .resume {
        font-size: 16px;
    }
    .resume a {
        text-decoration: underline;
    }
    .resume a:hover {
        font-size: 16px;
    }
    .contactme {
        height: 750px;
        margin-left: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        font-size: 18px;
    }
    .email {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 20px;
    }
    .phone {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 25px;
    }
    .linkedin {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 25px;
    }
    .contact_icon {
        margin-right: 30px;
    }
    .header {
        height: 100px;
        margin-top: 20px;
        margin-left: 10px;
        margin-right: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        font-size: 20px;
        text-align: center;
    }
    .header a {
        text-decoration: underline;
    }
    .header a:hover {
        font-size: 34px;
    }
    .projects_container {
        height: 750px;
        font-size: 18px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        row-gap: 50px;
    }
    .projects_container a {
        text-decoration: underline;
    }
    .projects_container a:hover {
        font-size: 18px;
    }
    .ecommerce {
        height: 80px;
        width: 140px;
    }
    .harrypotter {
        height: 80px;
        width: 140px;
    }
    .solarbright {
        height: 80px;
        width: 140px;
    }
    .shopify {
        height: 80px;
        width: 140px;
    }
    .project_img {
        width: 110px;
        height: 70px;
    }
    footer {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
}