﻿@import url(https://fonts.googleapis.com/css?family=Roboto:400,100,300,500,700);

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

h1 {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    font-size: 50px;
    font-weight: 100;
    text-align: center;
    color: white;
}

p {
    margin: 0 60px;
    font-weight: 300;
}

.overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    color: black;
}

section {
    width: 100%;
    padding: 60px 0;
    background: white;
}

.img {
    padding: 0;
    min-height: 150px;
    background-attachment: fixed;
    background-position: 50% 0;
    background-repeat: no-repeat;
}

    .img:first-child {
        height: 300px;
        min-height: inherit;
        background-attachment: inherit;
        background-position: center;
        background-size: cover;
    }
