* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

body {
    margin: 0 50px;
    padding: 20px 0;
}

header {
    margin: 20px 0 50px;
    text-align: left;
}

    header h1 {
        font-size: 70px;
        font-weight: lighter;
    }

    header h2 {
        font-size: 55px;
        font-style: italic;
        font-weight: lighter;
    }

main {

}

.section_title {
    font-size: 45px;
    font-weight: lighter;
}

section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0;
}

    .about_text {
        font-size: 18px;
        width: 600px;
    }

    .gallery_img {
        height: 325px;
        width: 325px;
        object-fit: cover;
        object-position: 25% 25%;
        margin: 20px;
    }

    .gallery_img {
        height: 325px;
        width: 325px;
        object-fit: cover;
        object-position: 25% 25%;
        margin: 20px;
    }

    .contact_info {
        margin: 20px 60px;
        text-align: center;
    }

    .contact_name,
    .contact_craft,
    .contact_phone {
        font-size: 32px;
        font-weight: lighter;
        text-align: left;
        text-transform: uppercase;
    }

    .subscribe {
        margin: 20px;
    }

    form {
        border: 1px solid #4e4e4e;
        border-radius: 15px;
        padding: 30px;
        width: 350px;
    }

    .form_title {
        padding: 10px 0;
    }

    input {
        width: 90%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

    button {
        font-size: 18px;
        padding: 5px 9px;
    }

footer {
    border-top: 2px solid #4e4e4e;
    text-align: center;
    margin: 50px;
    padding: 20px 0;
}