::selection {
  color: green;
  background: #cef495;
  
}@font-face {
    font-family: Courier Prime;
    src: url(assets/fonts/CourierPrime/CourierPrime-Regular.ttf);
}
@font-face {
    font-family: Courier Prime;
	src: url(assets/fonts/CourierPrime/CourierPrime-Bold.ttf);
    font-weight: bold;
}
@font-face {
    font-family: Courier Prime;
	src: url(assets/fonts/CourierPrime/CourierPrime-Italic.ttf);
	font-style: italic;
}
@font-face {
    font-family: Courier Prime;
	src: url(assets/fonts/CourierPrime/CourierPrime-BoldItalic.tff);
    font-weight: bold;
	font-style: italic;
}

@font-face {
  font-family: Cute Notes;
  src: url(https://files.catbox.moe/8iakjv.ttf);
}

body {
	background-color: pink;
	margin: auto;
	background-image: url("https://files.catbox.moe/sk5g0m.png");
	background-size: cover;
	font-family: Courier Prime, Lucida Sans Typewriter, Courier New, monospaced;
	font-size: 0.83em;
}

a {
	color: #003840;
}

header {
	background-color: grey;
	height: 100px;
	margin-bottom: 30px;
	background-image: url("https://files.catbox.moe/vbr5lk.png");
	border-bottom-style: solid;
	border-color: #ae392b;
}
.papercut {
	position:absolute;
	top: -10px;
	left: 60px;
	height: 177px;
	width:436px;
	z-index: 1;
	background-image: url(https://files.catbox.moe/nh4quj.png);
	background-size: contain;
	background-repeat: no-repeat;
	font-family: Cute Notes, Brush Script MT, Goudy Old Style, serif;
	font-size: 38px;
	text-align: center;
	padding-top: 45px;
	color: #ae392b;
	filter:drop-shadow(1px 1px 3px black);
}

.reactive-image:hover {
	transform: scale(1.15);	
}

.layout {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.menu-box {
	width: 20%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.description-box {	
	background: url("https://files.catbox.moe/h4tltp.html");
	padding: 15px 0;
	width: 92%;
	box-shadow: 1px 1px 3px black;
	margin-bottom: 10px;
}

.description-box p {
	margin: 5px 15px;
}

menu {
	display: flex;
	flex-wrap:wrap;
	justify-content: space-around;
	padding: 0 5px;
	margin-bottom: 0;
}


.button {
	background-color: #abbf8e;
	border-radius: 10px;
	padding: 5px 10px 5px 10px;
	text-align: center;
	font-size: 14px;
	box-shadow: 1px 1px 3px black;
}
.button:hover {
	background-color: #68a8d8;
	transform: scale(1.15);
	transition-duration: 0.2s;
	color: white;
}

a.button {
	text-decoration: none;
}


.entries-list-bar {
	background-image: url(https://files.catbox.moe/vbr5lk.png);
	padding: 5px 5px 5px 15px;
	color: #a22524;
	border-radius: 0px 10px 0px 0px;
	box-shadow: 1px 1px 3px black;
	position: relative;
	z-index: 3;
}

.entries-list {
	overflow-y: scroll;
	overflow-x: hidden;
	height:150px;
	background-color: #292f33;
	padding: 7px;
	border-style: solid;
	border-color: #ae392b;
	border-top-style: none;
	position: relative;
	z-index: 2;
	box-shadow: 1px 1px 3px black;
	
}

.entries-list ul {
	list-style: none;
	margin: -3px 10px -3px -40px;
}

.entries-list li::before {
  content: '';
  display: inline-block;
  height: 15px;
  width: 15px;
  background-image: url(https://gifcity.carrd.co/assets/images/gallery283/5ca9c9ea.gif?v=dc8076d6);
  background-size: contain;
  margin-right: 5px;
  position: relative;
  top: 2px;
}
.entries-list a {
	color: #abbf8e;
	text-decoration: none;
	position: relative;
	left: 0px;
}

.entries-list a:hover {
	color: #68a8d8;
	left: 5px;
	transition-duration: 0.2s;
	text-decoration: underline;
}

main {
	height: 450px;
	width: 49%;
	border-style: solid;
	border-color: #ae392b;
	background-color: #003840;
	box-shadow: 1px 1px 3px black;
}

footer {
	margin-top: 30px;
	text-align: center;
}
	
footer img{
	width: 50%;
}

@media (max-width: 800px) {
	body {
		width: 100vw;
		background-size: cover;
	}
	
	header {
		display: none;
	}
	
	.layout {
		display: block;
		width: 95%;
	}
	
	.menu-box {
		width: 100%;
		max-width: none;
		justify-content: space-around;
		flex-direction: row;
		align-items: center;
		margin: 30px 0px;
	}
	
	.description-box {
		width: 40%;
		padding: 7px;
		font-size: 11px;
	}
	
	a.button {
		font-size: 11px;
	}
	
	.entries {
		width: 45%;
	}
	
	.entries-list-bar {
		width: 100%;
		height: 15px;
	}
	
	.entries-list {
		width: 100%;
	}
	
	main {
		width: 85%;
		margin: 0px;
		margin:auto;
	}
	
	footer {
		width: 100%;
	}
	
	footer img {
		width: 90%;
	}
}


