@import url('https://fonts.googleapis.com/css2?family=Alegreya:ital,wght@0,400..900;1,400..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
body {
	background-image: url('./bg.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 100vh;
	margin: 0;
	padding: 0;
	font-family: Arial, sans-serif;
	position: relative;
}

body::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 1;
}

a {
	color: rgb(240, 240, 240);
	text-decoration: none;
}
.content-area {
	position: relative;
	z-index: 2;
	height: 100vh;
	width: 100%;
	text-align: center;
}

.d-flex {
	display: flex;
}
.align-items-center {
	align-items: center;
}
.justify-content-center {
	justify-content: center;
}

/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@-moz-keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.fade-in {
	opacity: 0; /* make things invisible upon start */
	-webkit-animation: fadeIn ease-in 1; /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
	-moz-animation: fadeIn ease-in 1;
	animation: fadeIn ease-in 1;

	-webkit-animation-fill-mode: forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
	-moz-animation-fill-mode: forwards;
	animation-fill-mode: forwards;

	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	animation-duration: 1s;
	&.one {
		-webkit-animation-delay: 0.7s;
		-moz-animation-delay: 0.7s;
		animation-delay: 0.7s;
	}

	&.two {
		-webkit-animation-delay: 1.2s;
		-moz-animation-delay: 1.2s;
		animation-delay: 1.2s;
	}
	&.three {
		-webkit-animation-delay: 1.7s;
		-moz-animation-delay: 1.7s;
		animation-delay: 1.7s;
	}
}

.logo {
	max-width: 480px;
	width: 50%;
	display: block;
	margin: 0 auto;
}

h3 {
	font-family: "Rubik";
	letter-spacing: 5px;
	text-transform: uppercase;
	font-weight: 100;
	color: rgba(#000, 0.8);
}
.social {
	ul {
		list-style-type: none;
		padding: 0;
		li {
			display: inline-block;
			margin: 5px;
			a {
				img {
					width: 28px;
					&:hover {
						opacity: 0.7;
					}
				}
			}
		}
	}
}
.copy-right {
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	text-align: center;
	padding-bottom: 15px;
	font-size: 12px;
	color: rgba(#000, 0.5);
}


p {
	color: white;
	font-family: "Rubik";
	font-weight: 150px;
}

.footer {
	position: fixed;
	bottom: 0;
	width: 100%;
	height: 30px;
	background-color: #161616;
	text-align: center;
	padding: 0;
}
