body, html {

  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;	
}
body {
	padding-bottom:30px;
	min-width:340px;
}

.fjalla-one-regular {
  font-family: "Fjalla One", sans-serif;
  font-weight: 400;
  font-style: normal;
}


.main {
    width: 100%;
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center; /* centrerar horisontellt */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    /* gradient overlay */
    background-image: 
        linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.8) 100%), 
        url('svaclean.jpg');
}
/* Media query för mobil */
@media (max-width: 767px) {
    .main {
        height: 70vh; /* mindre höjd på mobil */
    }
	.main {
		/* gradient overlay */
		background-image: 
			linear-gradient(to bottom, rgba(0,0,0,0) 20%, rgba(0,0,0,0.8) 100%), 
			url('svaclean.jpg');
	}	
}
.logo {
	width:42%;
	max-width:250px;
}
.box{
	background:#fff;
	width:100%;
	max-width:500px;
	border:1px solid #cccccc;
	margin:50px auto;
}
h1 {
	display:inline-block;
	padding-bottom:5px;
	margin-bottom:20px;
	text-transform: uppercase;
	border-bottom:4px solid #fff;
	text-shadow: 0px 0px 8px rgba(0,0,0,0.6);
}
h2 {
	text-align:center;
}

.btn {
    border: 5px solid #fff !important;
	color: #fff;
}
.btn-outline-secondary {
    color: #ccc;
    background-image: none;
    background-color: #fff0;
    border-color: #ccc;
}
.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.25;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 0 solid #fff0;
    padding: .9rem 1.8rem;
    font-size: 1.125rem;
    border-radius: 2.5rem;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.btn:hover {
	background:#fff;
	color:#002f6c;
	text-decoration:none;
}
a:focus, a:hover {
    color: #fff;
    text-decoration: underline;
}
a:active, a:hover {
    outline-width: 0;
}
.contact img {
	max-width:100%;
	height:auto;
}
.contact a {
	color: #01319c !important;
}
.white {
	color:#fff;
}