@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
	--blue: #1887d2;
	--green: #23D82E;
	--orange: #ff7800;
	--red: #D82323;

    --navbarBG: #343a40;
    --navbarborder: #575867;
    --navbartextColor: #b3b3b3;
    --contentBG: #454d55;
    --textColor: #bebebe;
}

* {
	margin: 0;
	padding: 0;
	color-scheme: dark;
	font-family: "Poppins", sans-serif;
}

body {
	width: 100%;
	height: 100%;
	background: var(--contentBG);
	color: var(--navbartextColor);
}


.regel_nav_top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 25px;
	position: fixed;
	right: 0;
	top: 0;
	background: var(--navbarBG);
	border-bottom: 1px solid var(--navbarborder);
	width: calc(100% - 375px);
	height: 75px;
	font-size: 18px;
	box-shadow: 0 0 8px #07070790;
	z-index: 1;
}

.regel_nav_top_left {
	cursor: pointer;
	color: var(--navbartextColor);
	text-decoration: none;
	transition: all 0.2s ease;
}

.regel_nav_top_right a {
	cursor: pointer;
	color: var(--navbartextColor);
	text-decoration: none;
	margin-left: 25px;
	transition: all 0.2s ease;
}		

.regel_nav_top_right a i {
	margin-right: 10px;
}	

.regel_nav_top_right a i:nth-child(2) {
	margin-left: 5px;
}	

.regel_nav_top_left:hover,
.regel_nav_top_right a:hover {
	color: var(--blue);
}

.dropbtn {
	padding: 16px;
	font-size: 16px;
	border: none;
}

.dropdown {
	position: relative;
	display: inline-block;
}

.dropdown-content {
	display: none;
	position: absolute;
	right: 15px;
	width: 250px;
	background: var(--navbarBG);
	box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.5);
	border-radius: 5px;
	border: 1px solid var(--navbarborder);
	margin-top: 10px;
	z-index: 1;
}

.dropdown-content a {
	display: block;
	padding: 7px 10px;
	text-decoration: none;
	font-size: 15px;
	border-bottom: 1px solid var(--navbarborder);
	color: var(--navbartextColor);
	margin-left: 0px;
}

.dropdown-content a:last-child {
    border-bottom: none;
} 

.dropdown:hover .dropdown-content {display: block;}

.regel_nav {
	position: fixed;
	left: 0;
	top: 0;
	background: var(--navbarBG);
	width: 325px;
	height: 100%;
    border-right: 1px solid var(--navbarborder);
	box-shadow: 0 0 8px #07070790;	
	z-index: 2;
}

.regel_nav_head {
	display: flex;
	align-items: center;
	justify-content: center;
	align-content: center;
	flex-wrap: wrap;
	width: 100%;
	height: 75px;
	background: var(--navbarBG); 
	font-size: 30px;
	font-weight: 300;
	line-height: 30px;
	border-bottom: 1px solid var(--navbarborder);
	color: var(--blue);
}

.regel_nav_head span {
	font-weight: 500;
	color: var(--navbartextColor);
}

.regel_nav ul {
	list-style: none;
	padding: 20px 5px;
}

.regel_nav ul li {
	padding-left: 20px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
}

.regel_nav ul li:hover {
	color: var(--blue);
}

.li_second{
	padding-left: 35px !important;
	font-weight: 300 !important;
}

.regel_nav_footer {
	position: absolute;
	bottom: 10px;
	left: 15px;
}

.regel_box {
	position: absolute;
	bottom: 0;
	right: 0;
	width: calc(100% - 325px);
	height: calc(100% - 75px);
	color: var(--textColor);
	overflow: auto;
}

.regel_box_padding {
    padding: 0 40px;
}

.rule_titel {
	display: block;
	width: 100%;
	font-size: 25px;
	font-weight: 600;
	margin-bottom: 12px;
	color: var(--textColor);
	margin-top: 50px;
}

.rule_titel:first-child {
	margin-top: 20px;
}

.rule_titel_small {
	display: block;
	width: 100%;
	font-weight: 500;
	color: var(--textColor);
}

.rule_animation {
	animation-name: highlight;
	animation-duration: 1s;
	animation-delay: .1s;
	border-radius: 5px;
}

@keyframes highlight {
	from {
		box-shadow: 0 0 25px #323247;
		background: #323247;
	}
	to {
		box-shadow: 0 0 5px transparent;
		background: transparent;
	}				
}

/* Footer */
.footer {
    width: 100%;
    color: var(--navbartextColor);
}

.footer_links {
    background: var(--contentBG);
    border-top: 1px solid var(--navbarborder);
    box-shadow: 0 0 8px #07070790;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 35px;
}

.footer_links_legal button {
    height: fit-content;
    border: 2px solid #1887d2;
    background: var(--contentBG);
    border-radius: 3px;
    margin-right: 10px;
    padding: 1px 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer_links_legal button:hover {
    filter: brightness(120%);
}

.footer_links_legal button a {
    color: var(--navbartextColor);
    text-decoration: none;
}

.footer_links_social i {
    font-size: 18px;
    margin-left: 5px;
    cursor: pointer;
    color: var(--navbartextColor);
    transition: all 0.3s ease;
}

.footer_links_social i:hover {
    color: #1887d2;
}

.footer_text {
    width: 100%;
    height: 45px;
    background: var(--navbarBG);
    border-top: 1px solid var(--navbarborder);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column
}

.footer_text_copyright {
    font-size: 12px;
    font-weight: 800;
    color: var(--navbartextColor);
}

.footer_text_made {
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--navbartextColor);
    opacity: 0.7;
}

.footer_text_made i,
.footer_text_made span {
    color: #1887d2;
    font-weight: 700;
}