body {
	background-color: #222232;
	height: 100vh;
	margin: 0;
}

div {
	font-family: 'JetBrains Mono', monospace;
	font-weight: lighter;
	color: #BBAAAA;
	font-size: 20px;
}

p {
	text-align: center;
}

.frame {
	opacity: 25%;
	position: fixed;
	z-index: 10;
	pointer-events: none;
	left: max(20px, 4vh);
	right: max(20px, 4vh);
	top: max(20px, 4vh);
	bottom: max(20px, 4vh);
}

.three {
	opacity: 100%;
	z-index: -1;
	overflow: hidden;
}

.frame_line {
	background-color: #BBAAAA;
	position: absolute;
}

.frame_line-left {
	width: 1px;
	left: 0;
	top: 0;
	height: 100%;
}

.frame_line-right {
	width: 1px;
	right: 0;
	top: 0;
	height: 100%;
}

.frame_line-top {
	height: 1px;
	left: 0;
	top: 0;
	width: 100%;
}

.frame_line-bottom {
	height: 1px;
	left: 0;
	bottom: 0;
	width: 100%;
}

.header {
	position: fixed;
	left: max(30px, 6vh);
	top: max(30px, 6vh);
	display: flex;
	flex-direction: column;
	align-items: center;
}

.message {
	font-size: 50px;
}

.main {
	position: fixed;
	width: 100%;
	height: 100%;
	justify-items: center;
	justify-content: center;
	align-items: center;
	display: flex;
	flex-direction: row;
	margin: auto;
}

.infocard {
	width: 300px;
	height: 600px;
	border-radius: 50px;
	position: relative;
	margin: 5px;
}

.thecard {
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
	padding: 0;
	flex-basis: 100%;
	opacity: 100%;
	transform-origin: 50% 100%;
	transition: rotate 500ms ease-out, scale 500ms ease-out, translate 500ms ease-out, opacity 500ms ease-out;
}

.infocard:hover .thecard {
	rotate: x 65deg;
	scale: 80%;
	opacity: 55%;
}

.thecard > p {
	margin: 0;
	font-size: 40px;
}

.infocard:hover .cardlist {
	translate: 0 -400px;
	opacity: 100%;
	scale: 100%;
}

.cardlist {
	display: flex;
	flex-direction: column;
	align-items: center;
	opacity: 0%;
	scale: 100%;
	transition: translate 400ms ease-out, opacity 400ms ease-in-out, scale 400ms ease-out;
}

.list-option {
	display: flex;
	flex-direction: row;
	place-items: center;
	justify-content: space-between;
	height: 2em;
	border-radius: 15px;
	width: 100%;
}

.fill-div {
	all:unset;
	cursor: pointer;
	display: block;
	background: #22223200;
	width: 66%;
	text-align: center;
	padding: 5px;
	border-radius: .4em;
	transition: background 400ms ease;
}

.fill-div:hover {
	background: #222232FF;
}

.icon {
	opacity: 0;
	scale: 100%;
	height: 1.25em;
	display: block;
	transition: opacity 400ms ease-in-out, scale 200ms ease;
}

.icon:hover {
	scale: 200%;
	z-index: 2;
}

.list-option:hover .icon {
	opacity: 90%;
}

.about-icon {
	filter: invert(0.45) sepia(1) saturate(3) hue-rotate(195deg);
}

.rust-icon {
	filter: invert(0.35) sepia(1) saturate(5) hue-rotate(0deg);
}