@font-face {
	font-family: centuryGothic;
	src: url(/fonts/centurygothic.ttf);
}

body {
	background-color: #ddd;
	padding: 0px;
	margin: 0px;

	* {
		font-family: centuryGothic;
	}
}

p {
	margin: 0px;
	padding: 0px;
}

#wrapper {
	width: 900px;
	min-height: 100vh;
	background-color: #f7efcd;
	margin: auto;
}

#linkList {
	background-color: #2372b8;
	height: 40px;
	display: flex;
	align-items: center;

	p {
		width: 150px;
		height: 40px;
		color: white;
		text-align: center;
		display: flex;
		justify-content: center;
		align-items: center;
		margin-right: 2px;

		&:hover, &.picked {
			background-color: #0693e3;
			cursor: pointer;
		}
	}
}

#credits {
	p {
		font-size: 16px;
		color: #777;
		text-align: center;
	}
}

#warning {
	background-color: #e0c0af;
	border: 3px solid #FF0000;
	border-radius: 3px;
	height: 28px;
	margin-left: 10px;
	margin-right: 10px;
	margin-top: 10px;
	overflow: hidden;
	position: relative;

	p {
		position: absolute;
		white-space: nowrap;
		animation: scroll-left 15s linear infinite;
		font-weight: bold;
		font-family: Arial, sans-serif;
		color: #000;
		margin: 0;
		top: 4px; 
	}
}
