@import "header.css";
@import "footer.css";
@import "fonts.css";
@import "panda.css";

::selection {
	color: black;
	background-color: white;
}

body {
	display: flex;
	flex-direction: column;

	background-color: black;
	margin: 0;
	min-height: 100vh;
}

h1 {
	font-family: VT323;
	font-size: 60px;
	color: white;
	margin: 0;
}

h4 {
	font-family: VT323;
	font-size: 30px;
	color: white;
	margin: 0;
}

p {
	font-family: VT323;
	font-size: 20px;
	color: white;
}

ul {
	padding: 20px;
}

li {
	font-family: VT323;
	font-size: 20px;
	color: white;
	margin: 5px;
}

select {
	display: block;
	font-family: VT323;

	background-color: white;
	border: 1px solid #ccc;
	outline: none;

	padding: 5px;
	margin: 5px;
}

a {
	font-family: VT323;
	font-size: 20px;
	color: #aaa;
	text-decoration: none;
}

a:hover {
	color: white;
}

span.new {
	color: black;
	background: white;
	border-radius: 5px;
	padding: 1px;
	margin-right: 2px;
}

button {
	font-family: VT323;
	font-size: 20px;

	color: black;
	background-color: white;
	border: none;
	box-shadow: 0 0 10px #fff4;

	padding: 10px 20px;
}

button:hover {
	background-color: #eee;
	cursor: pointer;
}

#rainbow {
	width: 100%;
	min-height: 3px;
	background: linear-gradient(to right, red, orange, yellow, green, blue, purple);
}

#hero {
	display: flex;
	flex-direction: row;

	flex-grow: 1;
	gap: 50px;

	width: 70%;
	margin: 50px auto;
}

#hero__left {}
#hero__right {}

#hero__title {
	font-size: 60px;
	margin: 0;
}

#hero__description {
	font-size: 25px;
	margin: 0;
}

#hero__button {
	width: 100%;
	margin: 50px 0;
	padding: 20px 30px;
}
