/* GENERAL */

* {
    box-sizing: border-box;
    font-family: helvetica;
}

body {
    margin: 0;
    padding: 0;
    text-align: center;
}

a {
    text-decoration: none;
}


/* NAVIGATION */



/* ABOUT ME SECTION */

.about-me {
    padding: 1rem;
}

.experience {
    margin-top: 1rem;
}

.experience span {
    margin: 1rem;
}

.home-projects {
    width: 100%;
}


/* MY WORK SECTION */

.my-work {
    padding: 1rem;
}

.see-more-btn {
    margin-top: 1rem;
}

/* SKILL SHARE CLASSES */

.skill-share {
    padding: 1rem;
}


/* BLOGS SECTIONS */

.my-blogs {
    padding: 1.5rem;
}


/* CONTACT FORM */
.contact-form-area {
    padding: 1rem;
}
.contact-form {
    text-align: left;
}

.submit-btn {
    text-align: center;
}

#contact-msg {
    width: 100%;
    margin-top: 1rem;
}



/* PORTFOLIO PAGE */

.portfolio-section {
    display: flex;
    padding: 1rem;
}

.web-image{
    min-width: 50%;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.web-image img {
    width: 50%;
}

.web-desc {
    min-width: 50%;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

h2 a {
    color: #000;
}

h2 a:hover {
    color: #000;
    text-decoration: underline;
}


/* FOOTER */

footer {
    background-color: #447899;
    color: #000;
    text-align: center;
}

/* BLOG PAGE */

.blog-soon {
    min-height: 84vh;
    display: flex;
    justify-content: center;
    align-items: center;
}