@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Press+Start+2P&display=swap');

html,
body {
	margin: 0;
	height: 100%;
	text-align: center;
	background-color: #1E2223;
	font-family: 'Audiowide';
	display: flex;
	justify-content: center;
}

.container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-bottom: 100%;
}

.joinButton {
	font-family: 'Audiowide';
	border-radius: 5px;
	padding: 5px 10px;
	margin-top: 20px;
}

button {
	color: inherit;
	font-size: 20px;
	background-color: transparent;
	padding: 5px 10px;
	font: inherit;
	cursor: pointer;
	border: 0;
}

.draw-border {
	box-shadow: inset 0 0 0 1px #F1A93D;
	color: #A39580;
	transition: color 0.25s 0.0833333333s;
	position: relative;
}

.draw-border::before,
.draw-border::after {
	border: 0 solid transparent;
	border-radius: 5px;
	box-sizing: border-box;
	content: "";
	pointer-events: none;
	position: absolute;
	width: 0;
	height: 0;
	bottom: 0;
	right: 0;
}

.draw-border::before {
	border-radius: 5px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}

.draw-border::after {
	border-radius: 5px;
	border-top-width: 1px;
	border-right-width: 1px;
}

.draw-border:hover {
	color: #F1A93D;
}

.draw-border:hover::before,
.draw-border:hover::after {
	border-color: #A39580;
	transition: border-color 0s, width 0.25s, height 0.25s;
	width: 100%;
	height: 100%;
}

.draw-border:hover::before {
	transition-delay: 0s, 0s, 0.25s;
}

.draw-border:hover::after {
	transition-delay: 0s, 0.25s, 0s;
}

.style {
	padding: 5px 10px;
	font: inherit;
	border: 0;
	color: #A39580;
	margin-top: 10px;
}