@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400&display=swap');

body {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    font-size: 0.95em;
    line-height: 1.55em;
    color: #000;
    margin: 0;
	padding: 0;
}

main {width: 1180px;
    margin: auto auto;}



h1, h2 {
    font-weight: 300;
    font-size: 2.35rem;
    line-height: 2.5rem;
    margin: 1rem 0 1.5rem;
    color: #373f4a;
}


a {
    outline: none;
    text-decoration: none;
    color: inherit;
}


p {
    font-size: 1rem;
    line-height: 1.5rem;
    color: #3E3E3E;
}


header {
    height: 30vh;
    width: 100%;
    position: relative;
    background-image: url(img/bg-test.jpg);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    z-index: 10;
    background-image: url(bg-default.jpg);
    
}

header::before {
    content: "";
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-image: -webkit-linear-gradient(135deg, rgba(255,255,255,0.7), rgba(255,255,255,0.2) 20%);
    background-image: -moz-linear-gradient(135deg, rgba(255,255,255,0.7), rgba(255,255,255,0.2) 20%);
    background-image: -o-linear-gradient(135deg, rgba(255,255,255,0.7), rgba(255,255,255,0.2) 20%);
    background-image: linear-gradient(135deg, rgba(255,255,255,0.7), rgba(255,255,255,0.2) 20%);
}
*, ::before, ::after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

#logo {display: block;
    position: fixed;
    right: 0px;
    padding-right: 20px;
    top: 35vh;
    width: 160px;
    z-index: 1000;
    opacity: 0.85;
    border-bottom: 2px solid #A09753;
    border-bottom: 2px solid #A09753;
}

#logo img {
    width: 100%;
    height: auto;
}

footer {
    font-size: 0.75rem;
    color: rgba(0,0,0,0.6);
    padding-top: 50px;
}

div#background {
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100vh;
    background-image: url(/bg.svg);
    background-position: center;
}