body,
html {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;

	display: flex;
	justify-content: center;
	align-items: center;

	background-color: #474747;
}

html {
	overflow-y: scroll;
}

body {
	background-image: url('hair-bg2.jpg');
	background-size: cover;
	background-position: center;
}

main {
	position: relative;
	width: 900px;
	height: 500px;
	background-color: #373737;

	font-family: 'Open Sans', sans-serif;
	color: #939393;
	font-size: 18px;

	box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

.decoration-line {
	position: absolute;
	width: 100%;
	height: 10px;
	bottom: 0;

	background-color: #eedca0;
}

.logo {
	display: block;
	margin: 0 auto;
	margin-top: 50px;
	width: 250px;
	height: auto;
}

.trennstrich {
	width: 100px;
	height: 3px;
	background-color: #eedca0;
	margin: 30px auto 0 auto;
}

.adress-main {
	position: absolute;
	bottom: 50px;
	left: 40px;
}

.adress-contact {
	position: absolute;
	bottom: 50px;
	right: 40px;
	text-align: right;
}

p {
	font-size: 16px;
	text-align: center;
	margin: 0;
	padding: 5px 0;
}

h1 {
	font-family: 'Dancing Script', sans-serif;
	font-size: 40px;
	font-weight: 400;
	text-align: center;
	margin: 0;
	padding-top: 30px;
	padding-bottom: 10px;
	color: #eedca0;
}

a {
	color: #979797;
	text-decoration: none;
	transition: .5s;
}

a:hover {
	color: #eee2b9;
}

a.highlight {
	color: #eedca0;
}

a.highlight:hover {
	color: #eee2b9;
}



.adress-contact a {
	margin-right: 0;
}
.adress-contact a:hover {
	margin-right: 10px;
}

.ev-copy {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.ev-copy a {
    color: #eedca0;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
}

@media (max-width: 480px) {
    .adress-main,
    .adress-contact {
        position: static;
        display: block;
        text-align: center
    }

    main {
        height: auto;
        padding-bottom: 20px;
    }
}