* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	background-color: black;
}

.container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
}

.logo {
	width: 20%;
	height: auto;
	opacity: 0;
	animation: fade-in 2s forwards;
}

.terminal-window {
	background-color: #1d1f21;
	width: 50%;
	height: auto;
	max-height: 60%;
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	opacity: 0;
	animation: slide-up 2s forwards, fade-in 2s forwards;
	transform: translateY(50px);
	margin-bottom: 50px;
}

.terminal-header {
	background-color: #1d1f21;
	height: 30px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.terminal-button {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	margin-right: 10px;
}

.close {
	background-color: #ff5f56;
}

.minimize {
	background-color: #ffbd2e;
}

.maximize {
	background-color: #27c93f;
}

.terminal-body {
	padding: 20px;
	height: calc(100% - 30px);
	overflow-y: auto;
}

.terminal-text {
	color: white;
	font-family: monospace;
	font-size: 18px;
	margin-bottom: 10px;
	opacity: 0;
	animation: fade-in 2s forwards;
}

@keyframes slide-up {
	from {
		transform: translateY(50px);
	}
	to {
		transform: translateY(0);
	}
}

@keyframes fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes typing {
	from {
		width: 0;
	}
	to {
		width: 100%;
	}
}

.terminal-cursor {
	color: white;
	font-family: monospace;
	font-size: 18px;
	animation: blink 1s infinite;
}

@keyframes blink {
	50% {
		opacity: 0;
	}
}

footer {
  background-color: #333;
  color: #fff;
  font-family: monospace;
  text-align: center;
  padding: 10px;
  position: absolute;
  bottom: 0;
  width: 100%;
}

footer p {
  margin: 0;
}
