footer
	{
		padding-bottom: 60px;
	}

	footer .container
	{
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	footer p
	{
		color: var(--color2);
		border-bottom: solid 1px var(--color2);
		font-family: "Playfair";
	}

	#logos
	{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(2, 1fr);
		grid-column-gap: 20px;
		grid-row-gap: 15px; 
		width: 80%;
	}

	#logos img
	{
		max-width: 85%;
		margin: auto;
	}

	@media(min-width: 800px)
	{
		#logos
		{
			display: flex;
			justify-content: space-between;
			align-items: center;
		}
		
		#logos img
		{
			max-width: 30%;
			height: fit-content;
		}
	}