@font-face {
	font-family: fsv_font;
	src: url("../src/fonts/DoulosSILR.ttf");
}

body {
    font-family: Arial, Verdana, Helvetica, sans-serif;
    font-size: 100%;
    width: 100%;
    max-width: 1080px;
	min-width: 100px;
    height: 100%;
	margin: 0 auto; 
	float: none;
}
h1 {
    color: rgb(255, 255, 255);
    font-size: 1.5rem;
    padding: 0.1rem;
    margin: 0.1rem;
}
p {
    color: rgb(255, 255, 255);
    font-size: 1rem;
	line-height: 1.3;
    padding: 0.1rem;
    margin: 0.1rem;
}

a {
    color:  rgb(99, 177, 245);
    font-size: 1rem;
	line-height: 1.2;
    padding: 0.1rem;
    margin: 0.1rem;
}

	a:visited {
		color: rgb(99, 177, 245);
  	}

  	a:hover {
		color: green;
  	}
  

.artikel_bild {
    border-style: none;
    padding: 3px 6px 3px 0px;
    margin: 3px 6px 3px 0px;
    width: 220px;
    height: auto;
}

.ausrichtung_links {
    float: left;
}

.ausrichtung_rechts {
    float: right;
}

#home_wrapper {
	z-index: 9999;
	display: none;
	top: 0px;
	height: 80px;
	width: 100%;
	max-width: 1080px; 
	margin-bottom: 4px; 
}

#header {
	display: inline-block;
	background-color: rgba(48, 48, 48);
	margin-top:  1px;
	margin-bottom: 4px;
	width: 100%;
	border-radius: 5px;
	overflow: hidden;

}

#fsv_kopf_text {
	font-family: fsv_font;
	margin: 5px 0 5px 20px;
	float: left;
	text-shadow: 0px 0px 2px rgba(0, 0, 0, .5);  
}
	#fsv_kopf_text h1 {	
		font-size: 2.2rem;
		line-height: 1.2;
		padding: 0px;
		margin: 0px;
		font-weight: bolder;
		text-decoration: none;
		letter-spacing: 4px;
		color: rgb(99, 177, 245);
	}
	#fsv_kopf_text h2 {
		font-size: 1.2rem;
		line-height: 1;
		padding: 0px;
		margin: 0px;
		font-weight: bolder;
		text-decoration: none;
		letter-spacing: 4px;
		color: rgb(99, 177, 245);
	}

#fsv_logo {
		display: block;
		float: left;
		width: 64px;
		height: 64px;	
		margin-top: 8px;
		margin-left: 10px;
		margin-bottom: 8px;
		animation: turner 6s 3s infinite linear;
	}
	
	@keyframes turner{
		from{  transform: rotateY(0deg)   }
		to  {  transform: rotateY(360deg) }
	}

.button_artikel {
	display: none;
    width: 100%;
    height: 24px;
	margin-bottom: 4px;
    border: none;
    outline: none;
	font-size: 1rem;
    color:  rgb(99, 177, 245);
    background: rgb(48, 48, 48);
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 5px;
	border: 2px solid rgb(95, 95, 95);
}

.button_artikel:before {
    content: '';
	background: linear-gradient(45deg, #003cff, #0059ff, #0066ff, #00aeff,  #00e1ff);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
}

.button_artikel:active {
    color: rgb(48, 48, 48);
}

.button_artikel:active:after {
    background: transparent;
}

.button_artikel:hover:before {
    opacity: 1;
}

.button_artikel:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(48, 48, 48);
    left: 0;
    top: 0;
    border-radius: 5px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

