footer {
    width: 100vw;
    height: 2rem;
    position: absolute;
    bottom: 0;

    padding: 1rem 0;

    background-color: #ffffff8c;
    box-shadow: 0 0 1rem rgb(54, 54, 54);

	display: grid;
	grid-template-columns: 1fr auto 1fr;
	grid-column-gap: 5px;
	justify-items: center;
}
footer :nth-child(1) {
	grid-column-start: 2;
}
footer :nth-child(2) {
	margin-left: auto;
	margin-right: 15vw;
	/* white-space: nowrap; */
}
footer div {
	text-align: center;
}
@media screen and (max-width: 730px) { 
	footer {
		display: flex;
		flex-direction: column;
		align-items: center;
		flex-wrap: nowrap;
		justify-content: center;
		align-content: center;
	}
	footer :nth-child(1) {
		margin-left: auto;
		margin-right: auto;
	}
	footer :nth-child(2) {
		margin-left: auto;
		margin-right: auto;
	}
}

@media screen and (max-width: 600px) {
	footer {
		height: min-content;
	}
}
