body {
	font-family: "Helvetica", cursive;
	color: black;
	font-size: 100%;
	background-image: url("/images/background.jpg");
	background-size: cover;
	overflow-y: scroll;
	overflow-x: hidden;
}

/* knapper */
button {
	background-color: #097885;
	color: black;
	border: 2px black;
	border-radius: 20px;
	width: 100px;
	height: 40px;
}

/* navigationsknapper */
.topnav {
	display: flex;
	justify-content: space-around;
	align-items: center;
	height: 80px;
}

.topnav a {
	width: 200px;
	height: 40px;
	color: black;
	font-size: 35px;
	text-align: center;
	padding: 10px 10px;
	margin: 10px 10px;
	/*plads mellem knapper*/
	text-decoration: none;
	background-color: #b6d5d8;
	transition: background-color 0.3s ease;
	border-radius: 20px;
}

.topnav.night-mode a:hover {
	background-color: #097885;
	color: white;
}

.topnav.night-mode a {
	background-color: #32465a;
	/*mørkere baggrund til night mode*/
	color: white;
	/*hvid tekst i night mode*/
}

.topnav a:hover {
	background-color: #097885;
	/*mørkere baggrund ved hover*/
	color: white;
	/*hvid tekst til hover*/
}

.topnav a.active {
	background-color: #32465a;
	/* En anden farve for aktive links */
	color: white;
}

/* index sol */
.sun {
	position: absolute;
	width: 480px;
	height: auto;
	transition: transform 0.6s ease-in-out;
}

/* batteri i hjoerne */
.battery {
	position: fixed; /* soerger for at den foelger med v scroll*/
	width: 150px;
	height: auto;
	transition: transform 0.6s ease-in-out;
	bottom: 20px;
	right: 20px;
}

.solcelleIndex {
	position: fixed;
	bottom: -50px; /* Adjust the bottom distance as needed */
	left: 50%;
	transform: translateX(-50%);
	width: 30%;
}
