html, body, main, .container {
	height: 100%;
}

.container {
	width:90%;
	margin: 0 auto;
}

@font-face {
	font-family: "RobotoExtraBold";
  src: url("/assets/fonts/Roboto-ExtraBold.ttf") format("truetype");
  font-display: swap;
}

body, h1, h2 {
	background-color: #513B56;
	margin: 0;
	font-family: RobotoExtraBold;
	font-weight: 800;
  color: #fff;
}

h1 {
  font-size: 3.5em;
}

h2 {
  margin-top:20px;
  font-size: 2em;
}

form {
  margin-top:20px;
	display:flex;
	align-items: center;
}

input[type="text"] {
	padding:10px;
	margin-right:5px;
	font-size: 1.5em;
	width:80%;
}

input[type="submit"] {
	background-color:#fff;
	border:0;
	padding:10px;
	margin-left:5px;
	font-size: 1.5em;
	cursor:pointer;
	font-weight: 600;
	color:#000;
}

input[type="submit"]:hover {
	background-color:#c0c0c0;
}

.container {
	display: flex;
	flex-direction: column;
	text-align:center;
	align-items: center;
	justify-content: center;
}

pre {
	margin-top:20px;
	padding:10px;
	border-radius:30px;
	background-color:#ffffff;
	font-size: 1.5em;
	color:black;
	text-align:justify;
	cursor:pointer;
	overflow-y:hidden;
	max-width:100%;
	white-space:pre-wrap;
}

pre:hover {
	background-color:#c0c0c0;
}

#copied {
	display:none;
	border-radius:30px;
	background-color:white;
	padding:15px;
	font-size:1.5em;
	position:fixed;
	top:20px;
	color:black;
}

.social svg {
	width:3em;
	height:3em;
}

.facebook, .x, .linkedin {
	color:#fff;
}

.facebook:hover, .x:hover, .linkedin:hover {
	color:#c0c0c0;
}