.pairview {
	padding: 30px;
	width: 100%;
}

.pairview-main {
	margin-top: 30px;
}

.pairings {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--base-gap);
	
	
}

.pairings:not(:last-child) {
	margin-bottom: 30px;
}

.lovebox {
	background-color: var(--color-background-opac);
  background-blend-mode: overlay;
  background-attachment: fixed;
  background-image: var(--accent-bg);
  color: var(--color-main);
	padding: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 11px;
	text-transform: uppercase;
	gap: var(--base-gap);
}

.pair-pics {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: var(--base-gap);
}

.lover-gif {
	position: relative;
	padding: 10px;
}
.lover-gif:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 1px solid var(--secondary);
}
.lover-heart, .lover-and {
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--secondary);
	font-size: 12px;
	font-weight: 700;
}
.lovepic {
	width: 100px;
	height: 100px;
	object-fit: cover;
	object-position: center;
	border: unset;
}

.pair-names {
	width: 100%;
}
.lovefacts {
	display: grid;
	grid-template-columns: 120px 12px 120px;
	gap: var(--base-gap);
	text-align: center;
	justify-content: center;
	font-weight: 700;
}
.lovefacts > div {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.lovefacts a {
	width: 100%;
	flex: 1;
}