﻿body{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background-color: #0A0A0A;
	overflow-x: hidden;
}

.container {
	width: 80%;
	margin: 0 auto;
	position: relative;
}

header {
	background-color: #192841;
	color: #fff;
	text-align: center;
	padding: 20px 0;
	position: relative;
}

.animation-text {
	position: absolute;
	top: 50%;
	left: 30%;
	font-family: 'Graphick';
	font-size: 30px;
	font-weight: bold;
	color: #fff;
	z-index: 1;
}


.click-text {
	position: absolute;
	top: 50%;
	left: 30%;
	font-family: 'Graphick';
	font-size: 30px;
	font-weight: bold;
	color: #fff;
	z-index: 2;
	opacity: 0;
	cursor: pointer;
}

.logo-container {
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	position: relative;
}

.logo {
	max-width: 100px;
	margin-left: 0px;
	animation: Slide 2s ease-out forwards;
}

nav {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-top: 10px;
}

nav a {
	color: #fff;
	text-decoration: none;
	margin-left: 20px;
	font-size: 16px;
	transition: font-size 0.2s, text-decoration 0.2s;
}

nav a:hover,
nav a:active {
	font-size: 120%;
	text-decoration: underline;
}

span.separator {
	position: relative;
	color: #fff;
	padding: 0 10px;
}

@keyframes Slide {
	0% { 
		transform: translateX(60%);
	}
	100% {
		transform: translateX(-450%);
	}
}

#mention-leg {
	margin-bottom: 40px;
}

#mention-leg p a {
	color: #3A9BDC;
	text-decoration: underline;
}
#mention-leg p a:visited {
	color: #3A9BDC;
	text-decoration: underline;
}

h2 {
	margin-left: 20px;
	font-family: 'Dancing Script';
	font-size: 40px;
	position: relative;
	display: inline-block;
	z-index: 0;
	color: #fff;
	margin-top: 70px;
	margin-left: 60px;
	margin-bottom: 60px;
}

h2::after {
	content: "";
	display: block;
	width: 105%;
	height: 55px;
	background-color: #192841;
	position: absolute;
	top: 0;
	left: -3px;
	z-index: -1;
}
p {
	text-align: justify;
	font-size: 15px;
	color: #fff;
	margin-left: 60px;
	margin-right: 60px;
	font-family: 'Georgia';
	line-height: 1.5;
}

h3 {
	margin-left: 20px;
	font-family: 'Georgia';
	font-weight: bold;
	font-size: 18px;
	position: relative;
	display: inline-block;
	z-index: 0;
	color: #fff;
	margin-top: 50px;
	margin-left: 60px;
}
h4 {
	margin-left: 20px;
	font-family: 'Georgia';
	font-weight: bold;
	font-size: 16px;
	position: relative;
	display: inline-block;
	z-index: 0;
	color: #fff;
	margin-top: 30px;
	margin-left: 60px;
}
ul {
	list-style-type: circle;
	font-size: 15px;
	color: #fff;
	margin-left: 60px;
	font-family: 'Georgia';
}

li {
	margin-bottom: 5px;
}

footer {
	background-color: #192841;
	color: #fff;
	padding: 30px 0;
	position: relative;
	text-align: center; 
}

.nav-container {
	display: flex;
    justify-content: flex-start;
    align-items: center; 
    gap: 20px; 
    margin: 0 auto;
	padding-left: 5%;
}

.link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: text-decoration 0.2s;
}
.link:hover,
.link:active {
    text-decoration: underline;
    font-size: 110%;
}

.separator {
    font-size: 16px;
    color: #fff;
}

#cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 10px;
    width: 30%;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
	z-index: 5;
	transition: bottom 1s ease-in-out;
}
#cookie-banner.show {
    bottom: 0; 
}

#cookie-banner p {
    margin: 0 10px 10px 10px;
    font-size: 14px;
	text-align: justify;
	font-family: 'Forum', serif;
}

#accept-cookies,
#decline-cookies {
    background-color: #008080;
    color: #fff;
    border: none;
    padding: 8px 16px;
	font-size: 16px;
    cursor: pointer;
    margin: 0 40px;
}
#cookie-banner a {
	color: #1569C7;
	text-decoration: underline;
}

@media screen and (max-width: 400px) {
	html, body {
        overflow-x: hidden;
	}
	header {
		padding: 10px;
	}
	.animation-text {
		top: 40%;
		left: 32%;
		font-size: 16px;
	}
	.click-text {
		top: 40%;
		left: 32%;
		font-size: 16px;
	}
	.logo {
		margin-top: 20px;
		max-width: 70px;
		animation: Slide 1.1s ease-out forwards;
	}
	@keyframes Slide {
		0% { 
			transform: translateX(130%);
		}
		100% {
			transform: translateX(-180%);
		}
	}
	nav a {
		margin-left: 0;
		margin-right: 10px;
		font-size: 13px;
	}

	h3 {
		margin-right: 50px;
	}
	h4 {
		margin-right: 30px;
	}
	ul {
		margin-right: 30px;
	}

	#cookie-banner {
		bottom: -100%;
		left: 10px;
		width: 50%;
		height: 130px;
		padding: 8%;
		z-index: 6;
	}
	#cookie-banner p {
		font-size: 2.5vw;
	}
	#accept-cookies,
	#decline-cookies {
		font-size: 11px;
		padding: 8px 8px;
		cursor: pointer;
		margin: 0 10px;
	}
	
	footer {
		padding: 30px 0;
	}

	.nav-container {
		justify-content: center;
		gap: 10px;
		padding-left: 0;
	}
	.link {
		font-size: 3.5vw;
	}
	.link:hover,
	.link:active {
    	text-decoration: underline;
    	font-size: 80%;
	}
}

@media screen and (min-width: 401px) and (max-width: 600px) {
	html, body {
        overflow-x: hidden;
	}
	header {
		padding: 10px;
	}
	.animation-text {
		top: 40%;
		left: 38%;
		font-size: 16px;
	}
	.click-text {
		top: 40%;
		left: 32%;
		font-size: 16px;
	}
	.logo {
		margin-top: 20px;
		max-width: 70px;
		animation: Slide 1.1s ease-out forwards;
	}
	@keyframes Slide {
		0% { 
			transform: translateX(140%);
		}
		100% {
			transform: translateX(-190%);
		}
	}

	h3 {
		margin-right: 50px;
	}
	h4 {
		margin-right: 30px;
	}
	ul {
		margin-right: 30px;
	}

	#cookie-banner {
		bottom: -100%;
		left: 10px;
		width: 50%;
		height: 130px;
		padding: 10px;
		z-index: 6;
	}
	#cookie-banner p {
		margin: 0 3px 8px 3px;
		font-size: 11px;
	}
	#accept-cookies,
	#decline-cookies {
		font-size: 11px;
		padding: 8px 8px;
		cursor: pointer;
		margin: 0 10px;
	}
	
	footer {
		padding: 30px 0;
	}

	.nav-container {
		justify-content: center;
		gap: 10px;
		padding-left: 0;
	}
	.link {
		font-size: 3.2vw;
	}
	nav a {
		font-size : 3.2vw;
	}
}

@media screen and (min-width: 601px) and (max-width: 1025px) {
	html, body {
        overflow-x: hidden;
	}
	header {
		padding: 10px;
	}
	.animation-text {
		top: 40%;
		left: 35%;
		font-size: 27px;
	}
	.click-text {
		top: 40%;
		left: 35%;
		font-size: 27px;
	}
	.logo {
		margin-top: 20px;
		max-width: 90px;
		animation: Slide 1.1s ease-out forwards;
	}
	@keyframes Slide {
		0% { 
			transform: translateX(140%);
		}
		100% {
			transform: translateX(-260%);
		}
	}

	ul {
		margin-right: 50px;
	}

	#cookie-banner {
		position: fixed;
		bottom: -100%;
		left: 10px;
		width: 50%;
		height: 90px;
		padding: 10px;
		z-index: 6;
		transition: bottom 1s ease-in-out;
	}
	#cookie-banner.show {
		bottom: 0; 
	}
	#cookie-banner p {
		margin: 0 3px 8px 3px;
		font-size: 11px;
	}
	#accept-cookies,
	#decline-cookies {
		font-size: 11px;
		padding: 8px 8px;
		cursor: pointer;
		margin: 0 10px;
	}
	
	footer {
		padding: 30px 0;
		margin-top: 100px;
	}

	.nav-container {
		justify-content: flex-start;
		gap: 20px;
		padding-left: 5%;
	}
}