body {
	width: 100vw;
	height: 100vh;
	margin: 0;
	font-family: "Helvetica Neue",Helvetica, Arial;
	background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

main{
	display: flex;
	width: 100%;
	height: 90%;
	display: flex;
	align-items: center;
	justify-content: center;
}


nav > div {
	display: flex;
	flex-direction: column;
	gap: 0.5em;
}

footer {
	display: flex;
	width: 100%;
	height: 10%;
	align-items: flex-end;
	justify-content: center;
}

#copyright{
	color:#888;
	font-size: 0.85rem;
	letter-spacing: 0.5px;
}

@media screen and (max-width: 950px){
	nav{
		height: 60%;
		width: 80%;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: space-around;
	}		
}

@media screen and (min-width: 950px){
	nav{
		width: 80%;
		display: flex;
		flex-direction: row;
		align-items: flex-start;
		justify-content: space-between;
		flex-wrap: wrap;
		gap: 2rem;
	}
	nav > a, nav > div {
		flex: 0 0 auto;
	}		
}


a.link{
	font-family: "Helvetica Neue",Helvetica, Arial,sans-serif;
	color: #F07102;
	display:block;
	font-size: 1.5rem;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
}

a:active {
	color: #032559;
}

a:hover {
	color: #3EB0D8;
	transform: translateX(5px);
}

.announcement{
	font-size: 0.8em;
	margin: 0.5em 0;
	line-height: 1.4;
}

a.announcement{
	text-decoration: none;
}

.light{
	background: linear-gradient(135deg, #ff4458 0%, #e63946 100%);
	color: #FFFFFF;
	padding: 0.3em 0.5em;
	font-weight: bold;
	font-size: 0.75em;
	border-radius: 4px;
	box-shadow: 0 2px 4px rgba(230,57,70,0.3);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.live{
	color: #3EB0D8;
	font-weight: bolder;
}

a.link::before {
	color:  #888;
	content: "#";
	font-size: 1.2rem;
	opacity: 0.6;
	transition: opacity 0.3s ease;
}

a.link:hover::before {
	opacity: 1;
}
