/*@use 'sass:color';*/
*, *::before, *::after {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

* {
	margin: 0;
	padding: 0;
	font-size: 100%;
	line-height: calc(1em + 0.5rem);
}

img, picture, video, canvas, svg {
	display: block;
	max-width: 100%;
}

input, textarea, select {
	font: inherit;
}

h1, h2, h3, h4, h5, h6 {
	overflow-wrap: break-word;
	text-wrap: balance;
}

ol, ul {
	list-style: none;
}

.rot {
	color: #ff2929;
}

.gruen {
	color: #51c83c;
}

.bigger {
	font-size: 1.2em;
}

.smaller {
	font-size: 0.8em;
}

.infotext {
	font-size: 0.8em;
	font-style: italic;
}

.center {
	text-align: center;
}

html {
	scroll-behavior: smooth;
	background: url(../pics/bg-tag-pt.webp) no-repeat center fixed;
	background-size: cover;
	scrollbar-color: #fbc550 rgba(253, 239, 206, 0.7333333333);
}
@media (orientation: landscape) {
	html {
		background: url(../pics/bg-tag-ls.webp) no-repeat center fixed;
	}
}
@media screen and (prefers-reduced-motion) {
	html {
		scroll-behavior: auto;
	}
}

body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	min-height: 100vh;
	min-height: 100dvh;
	width: 95%;
	margin-inline: auto;
	font-family: arial, helvetica, sans-serif;
	color: #321608;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	font-smooth: always;
}
@media (min-width: 480px) {
	body {
		width: min(80vw, 50em);
	}
}
@media (min-width: 1350px) {
	body {
		width: 80ch;
		font-size: 1.2rem;
	}
}

h1 {
	font-family: arial black, helvetica black, sans-serif;
	color: #ffed00;
	line-height: 1.2em;
	font-size: 2rem;
	font-style: oblique 10deg;
	text-shadow: 1px 1px 1px #321608, -1px -1px 1px #321608, 1px -1px 1px #321608, -1px 1px 1px #321608;
	margin-bottom: 0.4rem;
	text-align: center;
}
@media (min-width: 480px) {
	h1 {
		font-size: 3rem;
		margin-bottom: 0.6rem;
		text-shadow: 2px 2px 1px #321608, -2px -2px 1px #321608, 2px -2px 1px #321608, -2px 2px 1px #321608;
	}
}

h2 {
	font-family: arial black, helvetica black, sans-serif;
	color: #ffed00;
	line-height: 1.2em;
	font-size: 1.5rem;
	font-style: oblique 10deg;
	text-shadow: 1px 1px 1px #321608, -1px -1px 1px #321608, 1px -1px 1px #321608, -1px 1px 1px #321608;
	margin-top: 0.4rem;
	margin-bottom: 0.4rem;
}
@media (min-width: 480px) {
	h2 {
		font-size: 2rem;
		margin-top: 0.5rem;
		margin-bottom: 1rem;
	}
}

h3 {
	font-family: arial, helvetica, sans-serif;
	font-weight: bold;
	line-height: 1.2em;
	font-size: 1.3rem;
	font-style: oblique 10deg;
	margin-bottom: 1rem;
}
@media (min-width: 480px) {
	h3 {
		font-size: 1.4rem;
	}
}

p {
	overflow-wrap: break-word;
	text-wrap: pretty;
	margin-bottom: 0.3rem;
}
p:first-letter {
	font-size: 1.3em;
}

strong {
	font-size: 1.2em;
	font-weight: bold;
}

button, input[type=submit] {
	border: none;
	display: block;
	margin-inline: auto;
	background-color: #fbc550;
	padding: 0.5rem 1rem;
	font-family: arial black, helvetica black, sans-serif;
	color: #321608;
	border-radius: 0.3em;
	-webkit-box-shadow: 1px 6px 4px rgba(77, 42, 25, 0.6);
	        box-shadow: 1px 6px 4px rgba(77, 42, 25, 0.6);
	-webkit-transition: all ease 0.1s;
	transition: all ease 0.1s;
}
@media (min-width: 760px) {
	button, input[type=submit] {
		padding: 0.3rem 0.6rem;
	}
}
button:hover, input[type=submit]:hover {
	-webkit-box-shadow: 1px 2px 2px rgba(77, 42, 25, 0.6);
	        box-shadow: 1px 2px 2px rgba(77, 42, 25, 0.6);
}
button:active, input[type=submit]:active {
	-webkit-box-shadow: 0 0 0;
	        box-shadow: 0 0 0;
}

form {
	display: block;
	width: 95%;
	margin-inline: auto;
	container-type: inline-size;
}
@media (min-width: 760px) {
	form {
		margin-left: 5%;
		width: 80%;
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: 9rem 1rem 1fr;
		grid-template-columns: 9rem 1fr;
		gap: 1rem;
	}
}
form label {
	display: block;
}
@media (min-width: 760px) {
	form label {
		display: block;
		/*width: 7rem;*/
	}
}
form input:not([type=submit]), form textarea {
	display: block;
	margin-bottom: 0.5rem;
	width: 90%;
	padding: 0.2em;
}
@media (min-width: 760px) {
	form input:not([type=submit]), form textarea {
		display: block;
		margin-bottom: 0;
		width: 100%;
	}
}
form textarea {
	field-sizing: content;
	resize: vertical;
}
form input[type=submit] {
	margin-top: 1em;
}
form input#checknummer {
	width: 5rem;
	height: 40px;
}

input, button, textarea, select {
	font: inherit;
	border-radius: 0.4em;
}
input:focus, button:focus, textarea:focus, select:focus {
	outline-offset: 2px;
}

.textlink {
	color: #321608;
	text-shadow: 2px 4px 4px rgba(77, 42, 25, 0.6);
}
.textlink:hover {
	text-shadow: 1px 2px 2px rgba(77, 42, 25, 0.6);
}
.textlink:active {
	text-shadow: none;
}

#links {
	margin-top: 0.5rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap: 0.5rem;
	-ms-hyphens: none;
	    hyphens: none;
	-webkit-perspective: 300px;
	        perspective: 300px;
	-webkit-perspective-origin: 50% 50%;
	        perspective-origin: 50% 50%;
}
@media (min-width: 480px) {
	#links {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
	}
}
#links li {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 min(13em, 50%);
	        flex: 1 1 min(13em, 50%);
	background: rgba(253, 239, 206, 0.7333333333);
	border-radius: 0.3em;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-line-pack: center;
	    align-content: center;
	-webkit-box-shadow: 1px 6px 4px rgba(77, 42, 25, 0.6);
	        box-shadow: 1px 6px 4px rgba(77, 42, 25, 0.6);
	-webkit-transition: all ease-in-out 0.1s;
	transition: all ease-in-out 0.1s;
}
#links li a {
	-webkit-box-flex: 2;
	    -ms-flex-positive: 2;
	        flex-grow: 2;
	text-decoration: none;
	color: #321608;
	font-weight: 600;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 0.3em;
	padding-left: 0.6em;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
#links li a .linkpic {
	height: 3em;
	border-radius: 0.3em;
}
#links li:hover {
	-webkit-transform: translateZ(-5px);
	        transform: translateZ(-5px);
	-webkit-box-shadow: 1px 3px 2px rgba(77, 42, 25, 0.6);
	        box-shadow: 1px 3px 2px rgba(77, 42, 25, 0.6);
}
#links li:active {
	-webkit-transform: translateZ(-6px);
	        transform: translateZ(-6px);
	-webkit-box-shadow: 1px 1px 1px rgba(77, 42, 25, 0.6);
	        box-shadow: 1px 1px 1px rgba(77, 42, 25, 0.6);
}

header {
	display: block;
}
header #titelblock {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
header #titelblock .logolink img {
	width: 80%;
	margin-inline: auto;
}
header #titelblock #textzeile {
	font-family: arial black, helvetica black, sans-serif;
	color: #ffed00;
	line-height: 1.2em;
	font-size: 0.9rem;
	font-style: oblique 10deg;
	text-shadow: 1px 1px 1px #321608, -1px -1px 1px #321608, 1px -1px 1px #321608, -1px 1px 1px #321608;
	font-family: arial black, helvetica black, sans-serif;
	text-align: center;
}

@media (min-width: 480px) {
	header {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	header #titelblock .logolink img {
		width: 60%;
		margin-inline: auto;
	}
	header #titelblock #textzeile {
		font-size: 1.5rem;
	}
}
#menu {
	position: fixed;
	bottom: 2rem;
	left: 0px;
	z-index: 95;
}

#navmenu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100vw;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-webkit-box-pack: space-evenly;
	    -ms-flex-pack: space-evenly;
	        justify-content: space-evenly;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}

#menu li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	background-color: #fbc550;
	width: 19vw;
	-webkit-box-shadow: 1px -2px 3px rgba(77, 42, 25, 0.6);
	        box-shadow: 1px -2px 3px rgba(77, 42, 25, 0.6);
	height: 3em;
	border-top-left-radius: 20%;
	border-top-right-radius: 20%;
}
#menu li:has(a.aktuell) {
	border-top-left-radius: 30%;
	border-top-right-radius: 30%;
	height: 3.5em;
	background-color: #ffed00;
}
#menu li img.navicon {
	height: 2em;
	margin-inline: auto;
}
#menu li a {
	display: block;
	-ms-flex-item-align: end;
	    align-self: flex-end;
	color: #321608;
	font-family: arial, helvetica, sans-serif;
	font-size: 0.7rem;
	text-decoration: none;
	text-align: center;
}

@media (min-width: 480px) {
	#menu {
		width: 95%;
		margin-inline: auto;
		margin-top: 1rem;
		position: sticky;
		top: 5px;
	}
	#navmenu {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		width: 100%;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		gap: 0.3rem;
	}
	#menu li {
		display: block;
		border-radius: 0.8em;
		-webkit-box-shadow: 1px 6px 6px rgba(77, 42, 25, 0.6);
		        box-shadow: 1px 6px 6px rgba(77, 42, 25, 0.6);
		-webkit-transition: all ease-in-out 0.1s;
		transition: all ease-in-out 0.1s;
	}
	#menu li:hover {
		-webkit-box-shadow: 1px 3px 2px rgba(77, 42, 25, 0.6);
		        box-shadow: 1px 3px 2px rgba(77, 42, 25, 0.6);
	}
	#menu li:active {
		-webkit-box-shadow: 0 0 0;
		        box-shadow: 0 0 0;
	}
	#menu li:has(a.aktuell) {
		height: inherit;
		border-radius: 0.8em;
		height: 3em;
		-webkit-box-shadow: 1px 3px 2px rgba(77, 42, 25, 0.6);
		        box-shadow: 1px 3px 2px rgba(77, 42, 25, 0.6);
	}
	#menu li a {
		display: flex block;
		font-size: clamp(0.8rem, 2vw, 1.3rem);
		font-family: arial black, helvetica black, sans-serif;
		font-style: oblique 10deg;
		height: 100%;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
	#menu li a img.navicon {
		display: none;
	}
}
main {
	width: 100%;
	-ms-hyphens: auto;
	    hyphens: auto;
	margin-top: 0.5rem;
	margin-bottom: 5rem;
}
@media (min-width: 480px) {
	main {
		margin-bottom: 0;
	}
}
@media (min-width: 760px) {
	main {
		margin-top: 1rem;
	}
}

article {
	margin-top: 1rem;
	margin-bottom: 6rem;
}
@media (min-width: 480px) {
	article {
		margin-bottom: 1rem;
	}
}

section {
	content-visibility: auto;
	background-color: rgba(253, 239, 206, 0.7333333333);
	border-radius: 1em;
	-webkit-box-shadow: 1px 5px 3px rgba(77, 42, 25, 0.6);
	        box-shadow: 1px 5px 3px rgba(77, 42, 25, 0.6);
	-webkit-backdrop-filter: blur(5px) saturate(70%);
	        backdrop-filter: blur(5px) saturate(70%);
	padding: 0.5rem;
	margin-bottom: 0.5rem;
}
@media (min-width: 760px) {
	section {
		padding: 1rem;
		margin-bottom: 1rem;
	}
}
@media (min-width: 1350px) {
	section {
		padding-inline: 2rem;
	}
}

footer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: fixed;
	bottom: 0;
	left: 0;
	background-color: #fbc550;
	height: 2rem;
	width: 100vw;
	max-width: 100%;
	z-index: 97;
	font-size: 0.7rem;
	padding: 0.4em 1em;
	-ms-flex-pack: distribute;
	    justify-content: space-around;
	border-top: 3px solid rgba(77, 42, 25, 0.6);
}
footer #footertext {
	display: none;
}
@media (min-width: 480px) {
	footer {
		height: auto;
		width: auto;
		position: relative;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
		-webkit-box-align: end;
		    -ms-flex-align: end;
		        align-items: flex-end;
		margin-top: auto;
		background-color: rgba(253, 239, 206, 0.7333333333);
		border-top: 0;
		border-top-left-radius: 1em;
		border-top-right-radius: 1em;
		padding: 0.3em;
	}
	footer #footertext {
		display: block;
	}
}
@media (min-width: 760px) {
	footer {
		font-size: 1rem;
		padding: 1em;
	}
}

#footernav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
}
#footernav ul#footernav-spalte-eins {
	display: none;
}
@media (min-width: 480px) {
	#footernav ul#footernav-spalte-eins {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
}
#footernav .footerspalte {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
}
#footernav li {
	text-align: left;
	width: max(6em, 20vw);
}
@media (min-width: 480px) {
	#footernav li {
		width: 7em;
	}
}
#footernav li a {
	text-decoration: none;
	color: #321608;
}

#socialnav ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-ms-flex-pack: distribute;
	    justify-content: space-around;
	gap: 10vw;
}
@media (min-width: 480px) {
	#socialnav ul {
		gap: 1rem;
	}
}
#socialnav ul li {
	height: 1.2rem;
	width: 1.2rem;
}
@media (min-width: 480px) {
	#socialnav ul li {
		height: 35px;
		width: 35px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
}
#socialnav ul a img {
	width: 35px;
	-webkit-filter: drop-shadow(1px 6px 3px rgba(77, 42, 25, 0.6));
	        filter: drop-shadow(1px 6px 3px rgba(77, 42, 25, 0.6));
	-webkit-transition: all ease 0.1s;
	transition: all ease 0.1s;
}
#socialnav ul a img:hover {
	width: 32px;
	-webkit-filter: drop-shadow(1px 2px 2px rgba(77, 42, 25, 0.6));
	        filter: drop-shadow(1px 2px 2px rgba(77, 42, 25, 0.6));
}
#socialnav ul a img:active {
	-webkit-filter: drop-shadow(0px 0px 0px rgba(77, 42, 25, 0.6));
	        filter: drop-shadow(0px 0px 0px rgba(77, 42, 25, 0.6));
}

news-box {
	display: block;
	margin-bottom: 2rem;
}
news-box:last-of-type {
	margin-bottom: 0.5rem;
}
news-box time-line {
	display: block;
	font-style: italic;
	font-size: 0.8em;
	font-weight: bold;
	background-color: #fbc550;
	padding: 0.2em 0.5em;
	border-radius: 1em;
	margin-bottom: 1rem;
}
news-box news-inhalt {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap: 1rem;
}
news-box news-inhalt p {
	margin-bottom: 0;
}
news-box news-inhalt figure {
	margin-inline: auto;
	width: 95%;
}
@media (min-width: 760px) {
	news-box news-inhalt figure {
		width: 85%;
	}
}
news-box news-inhalt figure figcaption {
	font-size: 0.7em;
	font-style: italic;
}

#galerie {
	display: block;
	scroll-margin-top: 4rem;
}
#galerie li {
	display: inline-block;
	width: 5rem;
	background: #fbc550;
	padding: 0.5em;
	border-radius: 0.5em;
	text-align: center;
	margin-inline: 0.2em;
	margin-bottom: 1em;
	-webkit-box-shadow: 1px 6px 6px rgba(77, 42, 25, 0.6);
	        box-shadow: 1px 6px 6px rgba(77, 42, 25, 0.6);
	-webkit-transition: all ease-in-out 0.1s;
	transition: all ease-in-out 0.1s;
}
#galerie li:hover {
	-webkit-box-shadow: 1px 3px 2px rgba(77, 42, 25, 0.6);
	        box-shadow: 1px 3px 2px rgba(77, 42, 25, 0.6);
}
#galerie li:has(a.aktuell) {
	height: inherit;
	background: #ffed00;
	-webkit-box-shadow: 1px 3px 2px rgba(77, 42, 25, 0.6);
	        box-shadow: 1px 3px 2px rgba(77, 42, 25, 0.6);
}
#galerie li a {
	display: block;
	text-decoration: none;
	color: #321608;
	font-weight: bold;
}

#fotos {
	margin-top: 1.5em;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 0.7em;
}
#fotos a {
	border: 4px solid white;
	border-radius: 0.3em;
	-webkit-box-shadow: 1px 6px 6px rgba(77, 42, 25, 0.6);
	        box-shadow: 1px 6px 6px rgba(77, 42, 25, 0.6);
	-webkit-transition: all ease-in-out 0.1s;
	transition: all ease-in-out 0.1s;
}
#fotos a:hover {
	-webkit-box-shadow: 1px 3px 2px rgba(77, 42, 25, 0.6);
	        box-shadow: 1px 3px 2px rgba(77, 42, 25, 0.6);
}

#vorstand {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	gap: 3em;
	-ms-hyphens: none;
	    hyphens: none;
}
#vorstand li {
	width: content;
	-webkit-box-flex: 0;
	    -ms-flex-positive: 0;
	        flex-grow: 0;
	font-weight: bold;
}
#vorstand li:first-line {
	font-weight: normal;
}

#message {
	width: 100%;
	text-align: center;
	margin-bottom: 1rem;
}
#message .erfolg {
	font-weight: bold;
}

li.listlink {
	background: #fbc550;
	text-align: center;
	border-radius: 0.3em;
	margin: 0 0.4em 0.4em 0;
	width: 10em;
}
@media (min-width: 760px) {
	li.listlink {
		min-width: 20%;
	}
}
li.listlink a {
	-ms-hyphens: none;
	    hyphens: none;
	padding: 0.3em;
	text-decoration: none;
	border-radius: 0.3em;
	color: #321608;
	display: block;
	-webkit-box-shadow: 1px 6px 6px rgba(77, 42, 25, 0.6);
	        box-shadow: 1px 6px 6px rgba(77, 42, 25, 0.6);
	-webkit-transition: all ease-in-out 0.1s;
	transition: all ease-in-out 0.1s;
}
li.listlink a:hover, li.listlink a:active {
	-webkit-box-shadow: 1px 3px 2px rgba(77, 42, 25, 0.6);
	        box-shadow: 1px 3px 2px rgba(77, 42, 25, 0.6);
	background: #ffed00;
}

li.listinfo {
	margin-bottom: 0.3em;
	padding-left: 0.4em;
}
@media (min-width: 760px) {
	li.listinfo {
		padding: 0;
		margin-bottom: 1em;
		width: 100%;
	}
}

#cookiewindow {
	width: min(90%, 80ch);
	margin-top: 10vh;
	margin-inline: auto;
	padding: 1rem;
	font-size: 1.3rem;
	background-color: rgba(253, 239, 206, 0.9333333333);
	border: 4px solid #cf8607;
	border-radius: 0.5em;
}

::-ms-backdrop {
	background-color: hsl(from var(--bg-color) h s calc(l - 40%)/1);
	backdrop-filter: blur(6px) saturate(50%) brightness(70%);
}

::backdrop {
	background-color: hsl(from var(--bg-color) h s calc(l - 40%)/1);
	-webkit-backdrop-filter: blur(6px) saturate(50%) brightness(70%);
	        backdrop-filter: blur(6px) saturate(50%) brightness(70%);
}

#topbutton {
	display: none;
	position: fixed;
	bottom: 100px;
	right: 10px;
	z-index: 97;
	border: none;
	outline: none;
	background-color: #fbc550;
	color: #321608;
	cursor: pointer;
	padding: 0.3em;
	border-radius: 10px;
	font-size: 100%;
	font-weight: bold;
	opacity: 70%;
}
@media (min-width: 760px) {
	#topbutton {
		opacity: 100%;
		right: 50px;
	}
}