@import url(https://fonts.googleapis.com/css?family=Raleway:200,300,400,500,600,700,800,900,1000);

body {
	font-family: 'Raleway', sans-serif;
	letter-spacing: 0.02em;
	font-weight: 300;
	font-size: 15px;
	color: #777;
	margin: 0px;
}

/* h1 Replaced by title animation */

/* Subtitle */
h2 {
	font-weight: 700;
	font-size: 28px;
	margin-top: 20px;
	margin-bottom: 40px;
	text-align: center;
}

/* Headlines */
h3 {
	font-weight: 700;
	font-size: 21px;
	margin-top: 40px;
	margin-bottom: 20px;
}

/* Subheadlines used in privacy policy */
h4 {
	font-weight: 700;
	font-size: 17px;
	/* margin-top: 40px; */
	margin-bottom: 5px;
}

p {
	line-height: 22px;
	margin-bottom: 20px;
}

#page p a, #page li a, #page .row a {
	color: #f14e3c;
}

b {
	font-weight: 500;
	color: #555;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: #f14e3c;
	text-decoration: none;
}

a:active { 
    color: #ff8a73; /* lysere version af #f14e3c */
}

/* DEFAULTS */

.left {
	float: left;
}

.right {
	float: right;
}

.clear {
	clear: both;
}

.centered {
	text-align: center;
}

/* PAGE AREAS */

#page {
	width: 80%;
	margin: 60px auto;
}

#page ul {
	margin-bottom: 22px;
	line-height: 22px;
	list-style: square;
	list-style-position: inside;
}

#page ul li {
	margin-bottom: 11px; /* half of p line-height */
}

.clear {
	clear: both;
}

.appicon {
	width: 10%;
	margin: 0px auto;
	display: block;
	margin-bottom: 20px;
}

.badge {
	width: 15%;
	margin: 0px auto;
	display: block;
	margin-bottom: 40px;
}


/* TITLE */

.wordish-title {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 180px; /* Set height for the title container */
}

.letter {
	display: inline-block;
	font-size: 3rem; /* Large title font */
	font-weight: bold;
	width: 70px; /* Fixed width for each letter */
	height: 100px; /* Height for the letter background */
	text-align: center;
	line-height: 100px; /* Center text vertically */
	background-color: red;
	color: white;
	border-radius: 14px;
	margin: 0 5px;
	box-shadow: 3px 6px 0px rgba(0, 0, 0, 0.8);
	animation: bounce 2s ease-in-out infinite alternate; /* Apply bounce animation */
	transform: translateY(0); /* Default starting transform */
}

/* Keyframes for bounce animation */
@keyframes bounce {
	from {
		transform: translateY(-15px); /* Start with a small upward offset */
	}
	to {
		transform: translateY(15px); /* Bounce downward */
	}
}

/* TITLE END */
