/* Fonts */
@import url("https://use.typekit.net/qsw6clr.css");
@import url("../fonts/geometric.ttf");
@font-face {
	font-family: "Geometric";
	src: url("../fonts/geometric.ttf") format("truetype");
	font-style: normal;
	font-weight: 400;
}
:root {
	/* DEFAULT FONT */
	font-family: ofelia-display, sans-serif;
	font-weight: 800;
	font-style: normal;

	line-height: 1.55;

	box-sizing: border-box;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: #131313; /* Dark grey background */
	color: #ffffff; /* White text color */
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

.container {
	text-align: center;
	padding: 20px;
}

.logo {
	max-width: 300px;
	width: 90%;
	height: auto;
	margin-bottom: 50px;

	animation: rotateLogo 20s infinite ease-in-out;
}

h1 {
	font-size: 2.5em;
	margin-bottom: 10px;
	font-family: "Geometric";
	font-weight: bolder;

	line-height: 1;
	margin-bottom: 30px;
}

p {
	font-size: 1.1em;
	font-weight: 100;
	margin-bottom: 10px;
}
.tagline {
	margin-bottom: 10px;
}

a {
	color: #e24a4a;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

@keyframes rotateLogo {
	0% {
		transform: rotate(-3deg);
	}
	50% {
		transform: rotate(3deg);
	}
	100% {
		transform: rotate(-3deg);
	}
}
