* {
	font-family: "Comic Neue";
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
}

body {
	margin: 0;
	padding: 0;
	background-color: #f3b6ff;
	width: 100vw;
	max-width: 100vw;
	height: 100vh;
	max-height: 100vh;
	height: 100dvh;
	max-height: 100dvh;
	overflow: hidden;
}

.san-jordi {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	flex-direction: column;
	z-index: 1;
}

img {
	z-index: -1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: fixed;
	left: 0;
	top: 0;
	object-position: center bottoma;
}

img#img2 {
	filter: blur(10px);
	z-index: -1;
	transform: scale(1.1);
}

h1 {
	font-size: 2.75rem;
	color: #e856ff;
	text-shadow: 5px 5px 10px #6d003e;
	animation: rotate_and_scale 1s linear infinite alternate;
	font-weight: bolder;
}

p {
	font-size: 2rem;
	color: #ffe600;
	text-shadow: 5px 5px 10px #e856ff;
	animation: rotate 1s linear infinite alternate;
	font-weight: bold;
}

#container {
	left: 0px;
	top: -100px;
	height: calc(100vh + 100px);
	width: 100vw;
	overflow: hidden;
	position: fixed;
}

#animate {
	margin: 0 auto;
	width: 20px;
	overflow: visible;
	position: relative;
	opacity: 0.85;
}

@keyframes rotate {
	0% {
		transform: rotate(-20deg);
	}
	100% {
		transform: rotate(20deg);
	}
}

@keyframes scale {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.1);
	}
}

@keyframes rotate_and_scale {
	0% {
		transform: rotate(10deg) scale(1);
	}
	100% {
		transform: rotate(-10deg) scale(1.21);
	}
}

@media (min-width: 768px) {
	h1 {
		font-size: 6rem;
	}

	p {
		font-size: 4.5rem;
	}
}

#click-to-start {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	height: 100dvh;
	background-color: #f3b6ff;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 999999;
}

#click-to-start button {
	font-size: 2rem;
	color: #000000;
	font-weight: bolder;
	background-color: transparent;
	border: 0;
}
