html, body
{
    margin: 0;
    padding: 0;
    background-color: rgb(250, 243, 224);
    background-color: rgba(250, 243, 224, 1);
    color: rgba(12, 34, 51, 1);
    box-sizing: border-box;
}
.contact-container {
    display: flex;
    flex-direction: row;
    color: rgba(12, 34, 51, 1);
}
.content-container {
    flex: 0.5;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.form-container {
    flex: 0.5;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.heading-main {
    text-align: center;
}
.contents {
    padding: 5px;
    margin: 5px;
}

.social-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.social-list li {
    display: inline;
}
.social-list li a {
    text-decoration: none;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}
.label-column {
    float: left;
    width: 30%;
}
.input-column {
    float: right;
    width: 70%;
    
}
label {
    padding: 12px;
    display: inline-block;
}
input[type="text"], input[type="email"] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 1px solid #ff00ab;
    border-radius: 4px;
    resize: vertical;
}
textarea {
    width: 100%;
    height: 20%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 1px solid #ff00ab;
    border-radius: 4px;
    resize: none;
}
input[type=submit] {
    width: 100%;
    background-color: #04AA6D;
    border: none;
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    margin: 4px 2px;
    cursor: pointer;
}

form[input=text]:focus {
    border: 2px solid #ff0000;
    border-radius: 8px;
}

.social-icons {
    width: 15px;
    height: 15px;
}

@media (max-width: 768px) {
    .contact-container {
        display: flex;
        flex-direction: column;
        color: rgba(12, 34, 51, 1);
    }
    .content-container {
        margin-top: 70px;
    }
    .main-heading {
        text-align: center;
    }
    .feedback {
        clear: both;
    }
    .label-column, .input-column {
        width: 100%;
        
    }
    
}
