@import url('https://fonts.googleapis.com/css2?family=Hind:wght@500&display=swap');

body{
	background-image: url("../Media/Bilder/BlackWhite.png");
	background-size: 100% 100%;
	repeat: no-repeat;
}

li, a, button{
	font-family: "Hind", sans-serif;
	font-weight: 500;
	font-size: 18px;
	color: black;
	text-decoration: none;
}
header{
	display: flex;
    align-items: center;
    background-image: linear-gradient(to top, rgba(60,60,60,0), rgba(60,60,60,1));
	height:100px;
	margin: -8.5px;
    padding: 0px 0px;
    justify-content: flex-end;
}
button{
	margin-left: 15px;
	margin-right: 20px;
	padding: 9px 25px;
	background-color: rgb(30,255,0,1);
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease 0s;
}
button:hover{
	background-color: rgb(30,180,0,1);
}
button:active{
	background-color: rgb(30,180,0,1);
}
.logo{
	height:70px;
}
.logo_link{
	cursor: pointer;
	margin-right: auto;
	margin-left: 10px;
}
.nav__links{
	list-style: none;
}
.nav__links li{
	display: inline-block;
	padding: 0px 10px;
}
.nav__links li a{
	transition: all 0.3s ease 0s;
}
.nav__links li a:hover{
	color: #0089a9;
}
.frame{
	display:block;
	height: 835px;
	width: 96%;
	background-color: rgba(255,255,255,0.7);
	border: none;
	border-radius: 5px;
	box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
	margin: 20px auto 20px auto;
}
