* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    color: #808080;
}

body {
    margin: 0 50px;
    padding: 20px 0;
}

header {
    margin: 20px 0 50px;
    text-align: center;
}

    header h1 {
        font-family: 'Courier New', Courier, monospace;
        font-size: 70px;
        font-weight: lighter;
    }

    header h2 {
        font-size: 36px;
        font-weight: bolder;
    }

.section_title {
    font-size: 60px;
    font-weight: lighter;
    text-align: center;
}

section {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    border-top: 2px solid #808080;
    
}

.banner_image {
    height: 325px;
    width: 100%;
    object-fit: cover;
    object-position: 50% 40%;
    margin: 20px;
}

.about_text {
    font-size: 18px;
    width: 600px;
}

.gallery_img {
    height: 325px;
    width: 325px;
    object-fit: cover;
    object-position: 25% 25%;
    margin: 20px;
}

.gallery_img_lrg {
    height: 325px;
    width: 500px;
    object-fit: cover;
    object-position: 25% 25%;
    margin: 20px;
}

.portfolio {
    display: flex;
    justify-content: center;
}

.gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 80%;
}

.gallery_events {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 30px 0;
}

.galleries {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery_name {
    justify-content: center;
    margin: 30px;
}

.contact_info {
    margin: 20px;
}

form {
    border: 2px solid #808080;
    border-radius: 15px;
    padding: 30px;
    width: 350px;
}

.form_title {
    padding: 10px 0;
}

input {
    width: 90%;
    padding: 10px;
    border: 1px solid #808080;
    border-radius: 4px;
}

button {
    font-size: 18px;
    padding: 5px 9px;
}

footer {
    border-top: 2px solid #808080;
    text-align: center;
    padding: 20px 0;
}
  