@font-face {
    font-family: Avenir;
    src: url(Avenir.ttc);
}

#logo {
    width: 500px;
    margin: 5em auto;
    text-align: center;
    display: flex;
}

* {
    box-sizing: border-box;
    font-size: 20px;
    font-family: Avenir;
    -webkit-font-smoothing: antialiased;
    text-shadow: white 0 0 3px;
}

body.full {
background: linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)),
    url('Colette-and-Tim-bw.jpeg');
/*  background-image: url('Colette-and-Tim-bw.jpeg');*/
  background-repeat: no-repeat;
  background-attachment: fixed; 
  background-size: cover;
  background-position: center;
}

main {
    padding: 0 1em;
    margin: auto;
    width: 100%;
    max-width: 1000px;
    margin-bottom: 5em;
}

.header {
    margin-bottom: 8em;
    text-align: center;
}

p {
    text-align: left;
    margin:0;
}

.container {
    display: flex;
    margin-bottom: 2em;
    flex-direction: column;
    text-align: center;
}

a {
    text-decoration: none;
/*    color:rgba(21,150,142,1);*/
    color: black;
    text-align: center;
    align-self: center;
}

a:hover {
    border-bottom: 1px solid black;
}

h1 {
    padding: 1em 0 0 0;
    font-size: 2.25rem;
    text-align: center;
    line-height: 100%;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.vertical-center {
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

.nav {
    margin-top: 5em;
}

.heading {
    display: flex;
    margin: 3em auto 5em auto;
    justify-content: center;
}

.cta {
    text-align: center;
    margin: 2em auto 2em auto;
}

@media only screen and (max-width: 800px) {
    #logo {
        width: 70%;
        margin: 5em auto;
    }

    h1 {
        padding: 0 ;
        font-size: 2.5rem;
        line-height: 100%;
    }
}