.contactSection{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contactHeading{
    width: fit-content;
    height: 100px;
    padding-top: 20px;
}

.contactHeading h2{
    font-size: 40px;
    font-weight: 700;
}

.contactHeadingUnderline{
    width: 80%;
    height: 8px;
    background-color: var(--primary-accent-color);
    border: none;
    margin: 20px auto;
}

.submitForm{
    margin: 20px 0 20px 0;
    width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.name, .email, .message{
    margin-bottom: 30px;
}

.name p, .email p, .message p{
    font-size: 20px;
    font-weight: 700;
}

.contactAreaInput, .contactAreaText{
    border: none;
    outline: none;
    border-radius: 8px;
    background-color: var(--secondary-font-color);
    color: var(--primary-font-color);
    font-weight: 700;
    cursor: text;
    padding: 10px;
    font-size: 20px;
}

.contactAreaInput{
    width: 500px;
    height: 50px;
}

.contactAreaText{
    width: 500px;
    height: 100px;
    resize: none;
}

.subButton{
    width: 200px;
    height: 50px;
    font-size: 1em;
    border: none;
    border-radius: 5px;
    background-color: var(--base-accent-color);
    color: #f7f7f7;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.subButton:hover{
    opacity: 70%;
}

@media (max-width: 767px){
    .contactSection{
        margin-bottom: 0;
    }

    .contactHeading{
        width: fit-content;
        padding-top: 0;
    }
    
    .contactHeading h2{
        font-size: 30px;
        font-weight: 700;
    }

    .submitForm{
        width: 768px;
        margin: 15px 0 15px 0;
    }

    .name p, .email p, .message p{
        font-size: 16px;
    }

    .contactAreaInput, .contactAreaText{
        width: 400px;
    }

    .socials{
        margin: 20px 0 0 0;
    }
}

@media (max-width: 479px){ 
    .contactHeading h2{
        font-size: 25px;
        margin-top: 10px;
    }
    
    .contactHeadingUnderline{
        height: 6px;
        margin: 10px auto;
    }

    .submitForm{
        width: 350px;
    }

    .name p, .email p, .message p{
        font-size: 16px;
    }

    .contactAreaInput, .contactAreaText{
        font-weight: 500;
        font-size: 16px;
    }

    .contactAreaInput{
        width: 325px;
    }

    .contactAreaText{
        width: 325px;
    }

    .subButton{
        width: 150px;
        height: 45px;
        font-size: 0.8em;
    }

    .socials{
        margin: 5px 0 0 0;
    }
    
    .github, .linkedin{
        margin: 0 30px 0 30px;
        font-size: 18px;
    }
}