* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}
.common-btn {
    padding: 10px 20px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-weight: 600;
    background-color: #fd6e0a;
    color: #ffffff;
    cursor: pointer;
}
.secondary-btn {
    padding: 10px 20px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-weight: 600;
    background-color: transparent;
    border: 1px solid #fd6e0a;
    color: #fd6e0a;
    cursor: pointer;
}

header {
    background-color: #fff8f3;
    background-image: url("images/header_bg.png"), url("images/developer.png");
    background-repeat: no-repeat;
    background-position: right bottom, left center;
    background-size: 50%, 5%;
}
#navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 80%;
    margin: 0 auto;
    padding: 3rem 0;
}
#navbar > span {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.08rem;
}
#navbar #nav-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}
#navbar #nav-options a {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2px;
    border-radius: 6px;
}

#banner {
    display: flex;
    max-width: 80%;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
}
#banner #left-content {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
#banner #left-content h3 {
    font-size: 1.8rem;
    color: rgba(0, 0, 0, 0.6);
}
#banner #left-content h1 {
    font-size: 3.5rem;
    color: rgba(0, 0, 0, 0.8);
}
#banner #left-content p {
    color: rgba(0, 0, 0, 0.5);
    line-height: 1.5rem;
}
#banner #btn-container {
    display: flex;
    gap: 1rem;
}
#banner > img {
    width: 40%;
}


main > section{
    margin: 10rem 0;
}
main #about-me{
    background-color: #fff2e9;
    padding: 6rem;
    width: 50%;
    margin: 10rem auto;
}
main #about-me > div{
    text-align: center;
    background-color: #ffffff;
    padding: 2rem;

}
main .common-paragraph{
    margin: 1rem 0;
    text-align: justify;
    line-height: 1.5rem;
    color: rgba(0, 0, 0, 0.7);
}
main #about-me table{
    margin: 0 auto;
    /* works on table */
    border-spacing: .5rem;
}
main #about-me th,td{
    /* works on elemetns inside table */
    padding-right: 1rem;
}


main #whatido{
    width: calc(50% + 8rem);
    margin: 10rem auto;
    text-align: center;
}
main #whatido #projects-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
main #whatido #project{
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 6px;
    padding: 1rem;
    width: 100%;
    height: 18rem;
    overflow: hidden;
}
main #whatido #project h4{
    margin: .5rem;
}


main #resume-summary{
    width: calc(50% + 8rem);
    margin: 10rem auto;
}
main #resume-summary > h2{
    margin-bottom: 3rem;
    text-align: center;
}

main #resume-summary #resume-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}
main #resume-container #education > h2, #resume-container #experience > h2{
    margin: 1.8rem;
    color: rgba(0, 0, 0, 0.7);
}
main #resume-container #education h3, #resume-container #experience h3{
    margin: 2rem 0 1rem 0;
    color: rgba(0, 0, 0, 0.7);
}
main #resume-container #education h5, #resume-container #experience h5{
    margin-bottom: 1.2rem;
    color: rgba(0, 0, 0, 0.7);
}
main #resume-container #education p, #resume-container #experience p{
    padding-bottom: 1.2rem;
    color: rgba(0, 0, 0, 0.7);
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    text-align: justify;
    line-height: 1.4rem;
}
main #resume-summary #btn-container{
    margin: 2rem;
    text-align: center;
}


footer{
    background-color: #fff2e9;
}
footer #contact-form{
    width: calc(50% + 8rem);
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    padding: 8rem 0;
}
footer #contact-form h2{
    margin-bottom: 1rem;
}
footer #social{
    width: 50%;
}
footer #social p{
    line-height: 1.5rem;
}
footer #social .social-links{
    display: flex;
    margin-top: .8rem;
    gap: 1rem;
}
footer #form form{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    margin-bottom: 1rem;
}
footer #form form input, form textarea{
    padding: 1rem;
    border: 1px solid transparent;
    border-radius: 6px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}