footer {
	background-color: var(--color-blue);
	color: var(--color-light);
	display: flex;
	flex-direction: column;
	text-align: center;

	nav {
		p {
			&:first-child {
				font-size: 1.2em;
			}

			&:last-child {
				font-size: 0.9em;
			}
		}

		a {
			color: var(--color-light);
			margin: 0 5vw;
			text-decoration: none;
		}

		img {
			filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(213deg) brightness(104%) contrast(101%);
		}
	}

	& > div {
		display: flex;
		justify-content: center;
		gap: 1em;
		margin-top: 1em;
	}
}


/* Media Queries */

@media (max-width: 1024px) {
	footer p:first-child {
		font-size: 1.1em;
	}
}

@media (max-width: 768px) {
	footer p:first-child {
		font-size: 1em;
	}

	footer p:last-child {
		font-size: 0.8em;
	}
}