:root{
    --background-color: #A20000;
    --darker-background-color: #8E0000;
    --accent-color: #DE0000;
    --text-color: #C9AC61;
    --navbar-height: 80px;
}

/************************************************HTML************************************************/
*{
    margin: 0;
    padding: 0;
    font-size: 22px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
}
html{
    height: 100%;
}
body{
    height: 100%;
}
h1{
	font-size: 70px;
	padding-bottom: 50px;
}
h2{
	font-size: 22px;
	padding-bottom: 10px;
	font-weight: bold;
}
/************************************************HTML************************************************/

/************************************************BACKTOTOP************************************************/
.backtotop{
	width:80px;
	height:80px;
	border-radius:70%;
	position:fixed;
	bottom:25px;
	right:25px;
	display:none;
	background-color:var(--background-color);
}
.backtotop:hover{
	transform:scale(1.1);
}
.arrow{
	border-top:5px solid var(--text-color);
	border-right:5px solid var(--text-color);
	width:30px;
	height:30px;
	transform:translate(22.5px,30px) rotate(-45deg);
}
.sichtbar{
	display:block;
	animation:show 1s forwards;
}
@keyframes show{
	0%{opacity:0;}
	100%{opacity:1;}
}
/************************************************BACKTOTOP************************************************/

/************************************************HEADER************************************************/
nav{
    height: var(--navbar-height);
    background-color: var(--background-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav .logo{
    margin-left: 30px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 35px;
    font-variant: small-caps;
    text-decoration: none;
}
nav .logok{
    display: none;
}
nav ul{
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
}
nav li{
    height: 100%;
    width: 150px;
    text-align: center;
    position: relative;
}
nav li:hover{
    background: var(--accent-color);
}
nav ul a{
    height: 100%;
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    text-decoration: none;
}
.dropdown{
    height: min-content;
    width: 200px;
    background: var(--background-color);

    display: none;
    flex-direction: column;
    
    position: absolute;
    left: 0;
    top: var(--navbar-height);   
}
.dropdown li{
    height: 70px;
    width: 100%;
}
.dropdown li a{
    justify-content: flex-start;
    padding-left: 30px;
    width: calc(100% - 30px);
}
nav li:hover .dropdown{
    display: flex;
}
nav input[type="checkbox"]{
    display: none;
}
.expandable_li{
    display: flex;
    justify-content: center;
    align-items: center;
}
.toggle_button{
    width: 30px;
    height: 23px;

    position: absolute;
    top: 25px;
    right: 25px;

    display: none;
    flex-direction: column;
    justify-content: space-between;
}
.bar{
    height: 4px;
    width: 100%;
    background: var(--text-color);
    border-radius: 100px;
}
@media(max-width: 1180px){
    .toggle_button{
        display: flex;
    }
	nav .logo{
        display: none;
    }
	nav .logok{
		margin-left: 30px;
		font-family: Arial, Helvetica, sans-serif;
		font-size: 35px;
		font-variant: small-caps;
		text-decoration: none;
        display: flex;
    }
    nav ul{
        height: min-content;
        width: 100%;
        background-color: var(--background-color);

        display: none;
        position: absolute;
        top: var(--navbar-height);
    }
    nav li{
        height: min-content;
        width: 100%;
    }
    nav ul a{
        padding: 30px 0;
    }
    .expandable_li{
        display: block;
    }
    .expandable_li label{
        padding: 30px 0;
        cursor: pointer;
        display: block;
    }
    .expandable_li:hover .dropdown{
        display: none;
    }
    .expandable_li input[type="checkbox"]:checked ~ .dropdown{
        display: block;
    }
    .dropdown{
        position: static;
        width: 100%;
    }
    .dropdown li{
        padding: 0;
        display: block;
        position: static;
        background: var(--darker-background-color);

    }
    .dropdown li a{
        width: 100%;
        padding: 0;
        justify-content: center;
    }
    #toggle_button:checked ~ ul{
        display: block;
    }
}
/************************************************HEADER************************************************/

/************************************************FOOTER************************************************/
footer{
	width:100%;
	background:var(--background-color);
	height:350px;
	float:left;
}
	
footer #ud_footer_menü{
	color:var(--text-color);
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	text-align: center;
	front-size:14px;
	margin:30px 0 0 0;
}
	
footer #ud_footer_menü span{
	display:block;
	margin:15px 0 0 0;
}
	
footer #ud_footer_menü a{
	color:var(--text-color);
	text-decoration:none;
}
	
footer #ud_footer_menü a:hover{
	color:#00a6ff;
}

footer #ud_social_icons{
	text-align:center;
	margin:150px 0 0 0;
}
	
footer #ud_social_icons .ud_social{
	width:50px;
	height:50px;
	display:inline-table;
	text-align:center;
	margin:0 10px 0 0;
}
	
footer #ud_social_icons .ud_social img{
	width:100%;
	height:auto;
}
	
footer #ud_social_icons .ud_social img:hover{
	opacity:0.5;
}
/************************************************FOOTER************************************************/

/************************************************KATER-KATZE************************************************/
section #inhalt{
	text-align:center;
}
/************************************************KATER-KATZE************************************************/

/************************************************BILDER************************************************/
div.gallery {
	display: center;
	flex-wrap: wrap;
	justify-content: flex-start;
}

div.gallery-item {
	margin: 5px;
}

div.gallery-item img {
	max-width: 100%;
	width: 500px;
	height: auto;
}
/************************************************BILDER************************************************/

/************************************************KON************************************************/
.form-box{
	padding: 16px 0;
}

.form-box > label{
	display: block;
}

.form-box > input,
.form-box > textarea{
	padding: 12px;
	border-radius: 10px;
	border: 1px solid var(--background-color);
	width: 50%;
	background-color: white;
	
}

.form-box > input[type="submit"]{
	border: 0;
	border-radius: 10px;
	cursor: pointer;
	background-color: var(--background-color);
}

.form-box > input[type="submit"]:hover{
	opacity:0.5;
}

.form-box > textarea{
	height: 250px;
	resize: none;
}

.form-box a{
	color:var(--text-color);
	text-decoration:none;
}
	
.form-box a:hover{
	color:#00a6ff;
}

.login a{
	color: white;
	cursor: default;
}
/************************************************KON************************************************/

/************************************************INDEX-IMP-DAT************************************************/
.inhaltclass{
	white-space: normal;
	word-wrap: normal;
	display: block;
	padding: 30px 30% 30px 20%;
}

@media(max-width: 1180px){
	.inhaltclass{
		padding: 30px 15px 30px 15px;
	}
}

.inhaltclass ul{
	white-space: normal;
	word-wrap: normal;
	display: block;
	padding-left: 30px;
}
/************************************************INDEX-IMP-DAT************************************************/