@charset "UTF-8";
// Morten Mitchell Larød 2019

@import 'vars';

body {
    background-image: url(../img/index-bg.jpg);
    background-size: cover;
    background-attachment: fixed;
}
section {
	display: flex;
	justify-content: center;
	align-items: center;
}
.content {
    border-radius: 4px;
    -webkit-box-shadow: 0 0 5px rgba(0,0,0,.4);
    -moz-box-shadow: 0 0 5px rgba(0,0,0,.4);
    box-shadow: 0 0 5px rgba(0,0,0,.4);
    margin: 12vh 0 $gap-large;
    width: 666px;
    padding: 0 $gap-medium $gap-large;
}
h1 {
    font-weight: 600;
    font-size: 50px;
    line-height: 50px;
    padding: $gap-large 0;
    margin: 0;
    text-align: center;
}
h2 {
    font-weight: 600;
    font-size: 30px;
    line-height: $gap-large;
    padding: 0 0 $gap-large;
    margin: 0;
    text-align: center;
    color: $fc-dark-medium;
}
h3 {
    font-weight: 400;
    font-size: 16px;
    margin-bottom: $gap-default;
    color: $fc-dark-medium;
    text-transform: uppercase;
    padding-top: $gap-default;
}
p {
	margin: 0 0 $gap-default;
}
ul {
	padding: 0 0 0 20px;
}
li {
	list-style-type: disc;
	padding: $gap-tiny 0;
	a {
		font-weight: 600;
	}
}
li li {
	list-style-type: circle;
}