@charset "utf-8";

@font-face {
    font-family: 'fs_benjaminmedium';
    src: url('../font/fsbenjamin-medium.woff2') format('woff2'),
         url('../font/fsbenjamin-medium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
	font-family: fs_benjaminmedium, Arial, sans-serif;
	font-smoothing: antialiased;
	position: relative;
	width: 100%;
	height: 100vh;
	background-image: url(../img/bg.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
    background-color: #000;
}

a {
	color: #000;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

h1 {
	position: absolute;
	width: 20%;
	left: 5%;
	bottom: 5%;
}

p {
	position: absolute;
	top: 40%;
	left: 60%;
	transform: translate(-40%,-60%);
	font-size: 1.6vw;
}


