body {
	width: 100vw;
	height: 100svh;
	display: flex;
	justify-content: top;
	align-items: center;
	overflow: hidden;
	flex-direction: column;
	margin: 0;
}
.logo {
	width: 470px;
	height: auto;
}
.logo_link {
	width: intrinsic;
	height: intrinsic;
	display: flex;
	justify-content: center;
}
.text {
	font-family: monospace;
	font-size: 24px;
}
.dots {
	color: #FFB702;
	font-size: 20px;
}
.form_button {
	color: black;
	font-family: monospace;
	font-size: 17px;
	width: auto;
	height: auto;
	align-content: center;
	border: 0;
	background-color: white;
}
.grid-container{
	height: 85svh;
	display: grid;
	grid-row-gap: 50px;
	align-items: center;
	align-self: center;
	align-content: center;
	justify-content: center;
}
.grid-logo{
	width: intrinsic;
	justify-content: center;
	grid-column-start: 1;
	grid-column-end: 4;
}
.grid-text{
	grid-column-start: 1;
	grid-column-end: 4;
}
.footer{
	height: 15svh;
	width: 100vw;
	display: grid;
	align-content: flex-end;
	align-self: center;
	justify-content: space-around;
	grid-auto-flow: column;
	grid-column-gap: 20px;
	vertical-align: bottom;
	padding-bottom: 15px;
	margin: 0;
	text-align: center;
}
.footer_links{
	padding-bottom: 10px;
	font-family: monospace;
	font-size: 17px;
	color: black;
	font-style: normal;
	text-decoration: none;
}
.footer_links:hover{
	padding-bottom: 10px;
	font-family: monospace;
	font-size: 17px;
	color: #FFB702;
	font-style: normal;
	text-decoration: none;
}
.copyright{
	font-family: monospace;
	font-size: 15px;
	color: grey;
	align-self: center;
	text-align: center;
	vertical-align: center;
	align-content: center;
	margin-top: 0px;
	padding-bottom: 10px;
}
.cookies{
	font-family: monospace;
	font-size: 14px;
	text-align: center;
	margin: 0;
	padding: 10px;
	display: none;
	flex-direction: row;
	width: 95vw;
	vertical-align: middle;
	justify-content: center;
}
.accept_cookie_button{
	height: intrinsic;
	font-size: 15px;
	margin-left: 20px;
	background-color: #FFB702;
	color: black;
	font-family: monospace;
	box-shadow: none;
	box-sizing: border-box;
	border-style: none;
	border-radius: 2px;
	width: intrinsic;
}
.cookie_text{
	vertical-align: middle;
	align-self: center;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
	.text {
		font-family: monospace;
		width: 90vw;
		font-size: 5.7vw;
	}
	.logo {
		width: 92vw;
		height: auto;
	}
	.footer_links{
		font-size: 5vw;
		padding:0;
	}
	.dots{
		font-size: 5vw;
	}
	.footer{
		padding-bottom: 10px;
		grid-auto-flow: row;
		grid-row-gap: 20px;
		grid-column-gap: 0px;
		grid-template-columns:  repeat(2, auto);
	}
	.copyright{
		padding: 0;
		font-size: 3vw;
		grid-column-start: 1;
		grid-column-end: 3;

	}
	.cookies{
		flex-direction: column;
		align-items: center;
		gap: 11px;
		
	}
	.cookie_text{
		vertical-align: middle;
		align-self: center;
		text-align: center;
	}
	
} 

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-device-width: 600px) {
	
} 

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
	
} 

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
	
} 

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
	
}