/* UTILITIES */
@import url("../../css/vars.css");
@import url("../../css/normalize.css");
/* Adobe Fonts */
@import url("https://use.typekit.net/lsa2pys.css");

body {
	display: flex;
	flex-direction: column;
	align-items: center;

	background-color: #111111;
	color: #eeeeee;
}

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

.logo {
	width: 20%;
	animation: wobble 10s ease-in-out infinite;
}
p {
	width: 80%;
	font-size: 1.25em;
}
#articles {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	width: 80%;
}
#inthePress {
	font-size: 2em;
	text-align: center;
	margin-top: 40px;
}
.article-link {
	width: 35%;
	padding: 10px 20px;
	border: white 3px solid;
	border-radius: 10px;
	margin-bottom: 20px;

	color: #eeeeee;
	text-align: center;
	font-size: 1.5em;
	text-decoration: none;

	transition: all 0.15s ease-in-out;
}
.article-link:hover {
	background-color: #46644c;
	color: white;
}

#photos {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-evenly;
	align-items: center;
	gap: 40px;

	width: 80%;
}
#photos img {
	width: 25%;
	height: min-content;
}

@media screen and (max-width: 800px) {
	.logo {
		width: 60%;
	}
	#articles {
		width: 80%;
	}
	.article-link {
		width: 100%;
	}
	#photos {
		width: 100%;
	}
	#photos img {
		width: 90%;
	}
}

/* FOOTER */
footer {
	text-align: right;
	margin-right: 20px;
	width: 100%;
}
footer a {
	color: #e9054a;
	text-decoration: unset;
	text-decoration: none;
}
footer a:hover {
	color: white;
}
