body {
    background-color: hsl(27, 41%, 15%);
}







#submitProject {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

#formContainer {
    max-width: 800px;
}

#formContainer header {
    margin-bottom: 60px;
}

#formContainer header h1 {
    margin-bottom: 14px;
    color: hsl(48, 100%, 50%);
    text-align: center;
}

#formContainer header p {
    color: hsl(48, 68%, 77%);
    font-size: 17px;
    line-height: 27px;
}

#subProjForm label {
    color: hsl(48, 68%, 77%);
    margin-top: 5px;
    margin-left: 5px;
    font-size: 16px;
}

#subProjForm label span {
    color: hsl(48, 33%, 61%);
    font-size: 13px;
    margin-left: 8px;
}

#subProjForm label, input, select, textarea {
    display: block;
}

#subProjForm input, select, textarea {
    background-color: hsl(48, 100%, 94%);
    border-radius: 7px;
    width: 100%;
    padding: 5px 10px;
    height: 45px;
    font-size: 18px;
    border: solid rgb(216, 216, 216) 2px;
}

#subProjForm input:focus, select:focus, textarea:focus {
    outline: solid hsl(48, 100%, 50%) 3px;
}

#subProjForm textarea {
    height: 200px;
}

#descriptionContainer {
    margin-top: 75px;
    margin-bottom: 50px;
}

@media (max-width: 825px) {
    #submitProject header h1 {
        font-size: 42px;
        letter-spacing: 0px;
    }
}

@media (max-width: 510px) {
    #submitProject {
        padding: 50px 15px;
    }

    #submitProject header h1 {
        font-size: 32px;
        line-height: 40px;
    }

    #submitProject header p {
        font-size: 15px;
        line-height: 25px;
    }
}

@media (max-width: 355px) {
    #formContainer header {
        padding: 0 13px;
    }
}









#contactInfo {
    margin: 80px 0px 140px;
    display: flex;
    justify-content: space-between;
    height: 440px;
    width: 100%;
    border-top: solid 6px hsl(48, 100%, 50%);
    border-bottom: solid 6px hsl(48, 100%, 50%);
    background-color: rgb(14, 14, 14);
}

.sideImgsContainer {
    position: relative;
    height: 100%;
    max-width: 500px;
    min-width: 350px;
    width: 100%;
}

.sideImgs {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.sideImgsContainer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: hsla(6, 97%, 36%, 0.301);
    z-index: 1;
}

#infoBoxContainer {
    margin: 0px 40px 0px;
    display: flex;
    align-items: center;
    max-width: 570px;
    min-width: 470px;
    width: 100%;
}

#infoBox {
    color: white;
}

#infoBox h1 {
    text-transform: uppercase;
}

#infoBox h2 {
    font-size: 27px;
    margin-bottom: 6px;
}

#infoBox #phoneNumber {
    width: 100%;
    height: auto;
    margin-bottom: 50px;
}

#callContainer {
    margin-bottom: 25px;
    display: flex;
}

#callContainer h1 {
    font-size: 40px;
}

#callContainer img {
    height: 26px;
    margin-top: 14px;
    margin-right: 17px;
}

#infoBox #subtextContainer1, #subtextContainer2 {
    display: flex;
    justify-content: center;
}

#subtextContainer1 {
    margin-bottom: 35px;
}

#subtextContainer1 h3 {
    font-size: 18px;
    display: inline;
}

#subtextContainer1 span {
    margin: 0px 15px;
}

#subtextContainer2 span {
    margin: 0px 15px;
    font-size: 20px;
}

#subtextContainer2 h3 {
    font-size: 18px;
    color: hsl(48, 100%, 75%);
    display: inline;
}

@media (max-width: 1275px) {
    .sideImgsContainer {
        display: none;
    }

    #contactInfo {
        justify-content: center;
        padding: 45px 20px;
        min-height: 440px;
        height: auto;
    }

    #infoBoxContainer {
        margin: 0;
        min-width: 0px;
    }
}

@media (max-width: 600px) {
    #callContainer h1 {
        font-size: 26px;
        line-height: 36px;
    }

    #callContainer img {
        height: 21px;
        margin-top: 7px;
        margin-right: 12px;
    }

    #infoBox h2 {
        font-size: 23px;
        line-height: 32px;
        margin-bottom: 14px;
    }

    #subtextContainer1 {
        margin-bottom: 30px;
    }

    #subtextContainer1 span, #subtextContainer2 span {
        display: none;
    }

    #subtextContainer1 h3, #subtextContainer2 h3 {
        display: block;
        text-align: center;
        font-size: 17px;
        line-height: 26px;
    }
}