@font-face {
	font-family: "Silkscreen";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url(pixel.woff2) format("woff2");
}

body {
	margin: 0px;
	color: #f6efee;
	background: black;
	font-family: "Silkscreen", sans-serif;
}
p {
	margin: 1px;
}
.terminal {
	background: black;
	width: 80%;
	padding-right: 10%;
	padding-left: 10%;
}

#header {
	background: #623cea;
	color: black;
	height: 32px;
	width: 100%;
	font-family: "Silkscreen", sans-serif;
	font-weight: 400;
	font-style: normal;
	display: flex;
	align-items: center;
	align-content: space-between;
	flex-direction: row;
	justify-content: space-between;
	overflow: hidden;
}
#header .header-buttons {
	margin-right: 14px;
}
#header .header-buttons .exit {
	width: 14px;
	height: 14px;
	overflow: hidden;
	line-height: 8px;
	display: flex;
	align-items: center;
	text-align: center;
}
#header .header-buttons .exit a {
	text-decoration: none;
	color: black;
}
#header #windowtitle {
	margin-left: 14px;
}
a {
	color: #02c39a;
}
.button {
	background: #02c39a;
	padding: 2px;
	text-decoration: none;
	color: black;
	height: 8px;
	width: max-content;
	min-width: 8px;
}
.terminal-text {
	display: ;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

.cursor {
    width: 1rem;
    height: 0.2rem;
    background: white;
    animation: blink 0.2s infinite;
}

#footer {
    width: 100%;
    height: 16px;
    display: flex;
    background-color: #623cea;
    position: fixed;
    bottom: 0px;
    left: 0px;
    font-size: 7px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
