* {
    box-sizing: border-box;
}

body {
	padding: 0;
	margin: 0;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5;
}

#bakgrund {
	position: relative;
	height: 100vh;
	background: #030005;
}

#bakgrund .text {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.text {
	max-width: 767px;
	width: 100%;
	text-align: center;
}

.text .namn {
	position: relative;
	height: 180px;
	margin-bottom: 20px;
}

h1 {
	position: absolute;
	left: 50%;
	top: 50%;
    transform: translate(-50% , -50%);
	font-size: 210px;
	font-weight: 900;
	margin: 0px;
    margin-left: -20px;
	color: #030005;
	text-transform: uppercase;
	text-shadow: -1px -1px 0px #02ff00, 1px 1px 0px #02ff00;
	letter-spacing: -20px;
}

h2 {
	position: absolute;
	left: 0;
	right: 0;
	top: 110px;
	font-size: 42px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	text-shadow: 0px 2px 0px #02ff00;
	letter-spacing: 13px;
	margin: 0;
}

a {
	display: inline-block;
	text-transform: uppercase;
	color: #02ff00;
	text-decoration: none;
	border: 2px solid;
	background: transparent;
	padding: 10px 40px;
	font-size: 14px;
	font-weight: 700;
	transition: 0.2s all;
    margin: 3px;
}

a:hover {
		color: white;
	}

h3 {
	font-size: 25px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	text-shadow: 0px 2px 0px #02ff00;
	letter-spacing: 11px;
	margin: 30px;    
}

/* Responsiv */
@media only screen and (max-width: 767px) {
    h1 {
        font-size: 135px;
        letter-spacing: -18px;
        margin-left: -18px;
    }
    h2 {
        font-size: 24px;
        letter-spacing: 10px;
    }
    h3 {
        font-size: 16px;
        letter-spacing: 9px;
    }
    a {
        font-size: 12px;
        margin: 1px;
        padding: 8px 32px;
    }
}

@media only screen and (max-width: 480px) {
    h1 {
        font-size: 100px;
        letter-spacing: -16px;
        margin-left: -16px;
        
    }
    h2 {
        font-size: 18px;
        letter-spacing: 8px;
    }
    h3 {
        font-size: 13px;
        letter-spacing: 7px;
    }
    a {
        font-size: 10px;
        margin: 1px;
        padding: 7px 30px;
    }
}

@media only screen and (max-width: 330px) {
    h1 {
        font-size: 80px;
        letter-spacing: -9px;
        margin-left: -9px;
    }
    h2 {
        font-size: 14px;
        letter-spacing: 7px;
    }
    h3 {
        font-size: 9px;
        letter-spacing: 6px;
    }
    a {
        font-size: 9px;
        margin: 1px;
        padding: 7px 28px;
    }
}