/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
    box-sizing: border-box;
}
/* 2. Remove default margin */
* {
    margin: 0;
}

h1,h2,h3 {
    font-family: "Big Shoulders", sans-serif;
    color: #FFFFFF;
}

h1 {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 5em;
}

h3 {
    font-family: "Mulish", sans-serif;
    font-weight: 400;
    font-size: 1.5em;
}

a {
    color: #222222;
    ffont-family: "Mulish", sans-serif;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

body {
    display: flex;
    background: #e8bab8 url("../img/bg.png") no-repeat fixed right center;
    background-size: cover;
    font-family: sans-serif;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

body::before {
    background-image: url("../img/path.png");
    background-size: contain;
    background-position-y: bottom;
    background-position-x: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: absolute;
    height: 100vh;
    width: 100%;
    display: block;
    content: "";
    z-index: -1;
}

header, nav {
    width: 70%;
    margin: auto 0;
    text-align: center;
    align-items: center;
    flex-direction: column;
    display: flex;
}

header img {
    max-width: 300px;
}

nav {
    position: relative;
    margin-top: 20px;
    margin-bottom: 100px;
}

nav::after {
    background-image: url("../img/spot.png");
    background-size: contain;
    background-position-y: bottom;
    background-position-x: center;
    background-repeat: no-repeat;
    position: absolute;
    height: 100%;
    width: 90vw;
    display: block;
    content: "";
    z-index: -2;
    top: 0;
}

nav a {
    font-family: "Mulish", sans-serif;
    text-transform: uppercase;
    width: 100%;
}

.title {
    padding: 30px 0;
}
.description {
    padding: 5px 0;
}

.email {
    font-size: 1em;
}

.buton1 {
    background-color: #e8548e;
}
.buton2 {
    background-color: #993b7c;
}

.buton1, .buton2 {
    font-weight: 600;
    font-size: 1.5em;
    padding: 12px 0;
    margin: 12px 0;
    color: #FFFFFF;
}

.buton1:active, .buton2:active {
    color: #FFFFFF;
    opacity: 0.8;
}

.buton1:visited, .buton1:visited {
    color: #FFFFFF;
}

@media (hover: hover) {
    .buton1:hover, .buton2:hover {
	color: #FFFFFF;
	opacity: 0.8;
    }
}

@media (min-width: 1200px) {
    nav::after {
	width: 100%;
    }

    header, nav {
	width: 50%;
	max-width: 500px;
    }
}
