/* CSS Document */ :root {
    --theme1: #c6c6c6;
    --theme2: #fff080;
    --theme3: #0d0b00;
    --theme4: #fff;
	--theme5: #f9f09e;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}
html, body {
    position: relative;
    height: 100%;
    scroll-behavior: smooth;
}
body {
    background: var(--theme1);
    font-size: 16px;
    background-image: url("../img/header.jpg");
    background-size: 200%;
    background-repeat: no-repeat;
    background-position: 90% bottom;
}
header {
    height: 100%;
    top: 0;
    left: 0;
}
h1 {
    color: var(--theme5);
    font-weight: 900;
    font-size: 3rem;
    line-height: 3rem;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-top: 15vh;
}
h2 {
    color: var(--theme4);
    font-weight: 200;
    font-size: 2rem;
    line-height: 0.85rem;
    margin-left: 10vw;
    text-shadow: 2px 2px 3px #888;
    padding-top: 5rem;
}
.left {
    font-size: .75rem;
    padding-left: 3rem;
    line-height: 1.75rem
}
.right {
    font-size: 0.75rem;
    padding-left: 9rem;
}
button {
	position: absolute;
	bottom: 5%;
	left: 10%;
	border: 2px solid var(--theme5);
	padding: 7px 15px;
	background-color: var(--theme5);
	color: var(--theme1);
	transition: all .3s;
}
button:hover {
	background-color: var(--theme1);
}
a {
	color: var(--theme1);
	text-decoration: none;
	font-weight: 900;
	letter-spacing: 2px;
	font-size: 1rem;
	transition: all .3s;
}
a:hover {
	color: var(--theme5);
}
@media (min-width: 768px) {
    body {
        background-size: contain;
        background-position: center bottom;
    }
    h1 {
        font-size: 6rem;
        line-height: 6rem;
    }
    h2 {
        font-weight: 200;
        font-size: 4rem;
        line-height: 1.7rem;
    padding-top: 10rem;
    }
	a {
	font-size: 1.6rem;
}
    .left {
        font-size: 1.5rem;
        padding-left: 3rem;
        line-height: 3.5rem
    }
    .right {
        font-size: 1.5rem;
        padding-left: 18rem;
    }
}