@font-face {
	font-family: "Monof55";
	src: url("./monof55.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}
body {
	font-family: "Monof55", monospace;
	margin: auto;
	padding: 50px;
	max-width: 800px;
}
img {
	margin: auto;
}
li {
	color: rgb(0, 0, 0);
}
p {
	text-align: justify;
}

.friends {
	columns: 2;
	column-gap: 20px;
	column-fill: balance;
	max-width: 500px;
}

.friends li {
	break-inside: avoid;
	margin-bottom: 0.5rem;
}


@media (max-width: 600px) {
	.friends {
		columns: 1;
	}
}

.modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	justify-content: center;
	align-items: center;
	pointer-events: none;
}

.modal-overlay.active {
	display: flex;
	pointer-events: auto;
}

.modal-content {
	position: relative;
	max-width: 90vw;
	max-height: 90vh;
	margin: 20px;
	pointer-events: auto;
}

.modal-content img {
	width: auto;
	height: auto;
	max-width: 90vw;
	max-height: 90vh;
	object-fit: contain;
	display: block;
}
