:root {
    --primary-color: #ffffff;
    --secondary-color: #9e818a;
    --tertiary-color: #8a5a69;
    --main-font-family: 'Lato', serif;
    --secondary-font-family: 'Playfair Display', serif;
}

body {
    font-family: var(--main-font-family);
    font-weight: 300;
    min-height: 100vh;
    padding-top: 50px;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 300;
    letter-spacing: 1px;
    margin: 70px 0 80px 0;
}

.first-col {
    padding-left: 60px;
}

.second-col {
    margin-top: 15px;
    padding-right: 60px;
}

.form-edit {
    font-size: var(--main-font-family);
}

.form-edit h4 {
    font-family: var(--secondary-font-family);
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.form-control {
    font-family: var(--main-font-family);
    font-weight: 300;
}

.form-control:focus {
    background-color: white!important;
    box-shadow: 0px 0px 10px rgba(158, 129, 138, 0.2);
   
}

.btn {
    background-color: var(--secondary-color);
    border: none;
    border-radius: 30px;
    color: var(--primary-color);
    font-family: var(--main-font-family);
    font-size: 18px;
    font-weight: 500;
    padding: 8px 10px;
    margin: 15px;
}    

.btn:hover {
    background-color: var(--tertiary-color);
    color: var(--primary-color);
}

.btn:focus {
    box-shadow: none;
}

.icon {
    color: var(--secondary-color);
    font-size: 40px;
    margin-bottom: 13px;
}

.contact-links {
    color: var(--secondary-color);
    font-size: 23px;
    margin-bottom: 50px;
    text-decoration: none;
}

.contact-links:hover {
    color: var(--tertiary-color);
}

@media (max-width: 766px) {
    .first-col {
        padding-right: 60px;
        margin-bottom: 50px;
    }

    .second-col {
        padding: 0;
    }

}

@media (max-width: 400px) {
    .form-edit h4 {
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 30px;
}
    .icon {
        font-size: 40px;
    }
    .contact-links {
        font-size: 20px;
    }
}