.site-title {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
		url("https://smorasstats.com/v4/wp-content/uploads/2020/01/smil-ab.jpg");

	/* Set a specific height */
	height: 200px;

	/* Position and center the image to scale nicely on all screens */
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

.site-title__heading {
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
}

body {
	font-family: 'Montserrat', sans-serif;
	font-family: 'Open Sans', sans-serif;
}

.post-thumbnail {
	position: relative;
}

.image-title {
	padding: 1rem 1rem 1rem 1rem;
	position: absolute;
	bottom: 0px;
	left: 0px;
	background-color: rgba(0, 0, 0, 0.7);
	color: white;
	width: 100%;
}
.post-container {
	overflow: hidden;
}
.post-cover {
	object-fit: cover;
	width: 700px;
	height: 300px;
	transition: linear 0.2s;
}
.post-cover:hover {
	transform: scale(1.2);
	z-index: 99;
}
.image-title a {
	color: white;
	text-decoration: none;
}
.post-title a:hover {
	color: rgb(69, 69, 212);
}
.loader {
	border: 16px solid #f3f3f3;
	border-radius: 50%;
	border-top: 16px solid #3498db;
	width: 120px;
	height: 120px;
	-webkit-animation: spin 2s linear infinite; /* Safari */
	animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
/* CTA */
.call-to-action {
    background: linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),url(https://smorasstats.com/img/boks.jpg) fixed 50%;
    background-size: auto,auto;
    background-size: cover;
    padding: 80px 0;
    height: 400px;
    color: #fff;
}
.call-to-action .cta-title {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
}
.call-to-action .cta-btn {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 30px;
    border-radius: 50px;
    transition: .5s;
    margin: 10px;
    border: 2px solid #fff;
    color: #fff;
}
.call-to-action .cta-btn:hover {
    background-color:#007bff;
    border: 2px solid red;
}

.sponsor-cover {
	object-fit: cover;
	width: 300px;
	height: 100px;
	transition: linear 0.2s;
}
.sponsor-cover:hover {
	transform: scale(1.2);
	z-index: 99;
}