@charset "UTF-8";

html {
    margin: 0;
    padding: 0;
}

body {
	background: #000000;
	color: #d4d4d4;
	font-family: Georgia;
	margin: 0;
	padding: 0;
}

* {
    box-sizing: border-box;
}

#page-container{
	position: relative;
	min-height: 100dvh;
	padding-bottom: 22px;
}

a {
	position: relative;
	color: #FFFFFF;
	text-decoration: none;
}

h1, h2, h3 {
	font-weight: normal;
}

h3 {
	color: #d4d4d4;
}

#home {
	margin-left: 10px;
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 203px;
	padding-bottom: 22px;
}

#logo {
	margin: 0;
	position: absolute;
	top: 8px;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 203px;
}

#nav {
	position: absolute;
}

#nav ul {
	list-style: none;
}

#logo a, #nav a {
	display: block;
}

#logo a:hover, #nav a:hover {
	animation: shake 1.5s;
	animation-iteration-count: infinite;
}

@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}

li#about {
	position: absolute;
	left: -70px;
	top: -157px;
}

li#teaching {
	position: absolute;
	left: 183px;
	top: -157px;
}

li#contact {
	position: absolute;
	left: -91px;
	top: 104px;
}

li#videos {
	position: absolute;
	left: 197px;
	top: 104px;
}

ul#arrows {
	list-style: none;
}

.arrow1 {
	position: absolute;
	height: 13px;
	width: 124.72287142747452px;
	left: -48px;
	top: -61px;
	transform: rotate(45deg);
}

.arrow2 {
	position: absolute;
	height: 73.33735357163857px;
	width: 222.01472396065103px;
	left: -180px;
	top: -25px;
	transform: rotate(89.31991364192142deg);
}

.arrow3 {
	position: absolute;
	height: 13px;
	width: 124.72287142747452px;
	left: 110px;
	top: -59px;
	transform: rotate(135deg);
}

.arrow4 {
	position: absolute;
	height: 13px;
	width: 164.7734375px;
	left: 3px;
	top: -128px;
	transform: rotate(180deg);
}

.arrow5 {
	position: absolute;
	height: 73.34094696542468px;
	width: 222.02717184186926px;
	left: 140px;
	top: -25px;
	transform: rotate(90.92384795516203deg);
}

.arrow6 {
	position: absolute;
	height: 13px;
	width: 124.72287142747452px;
	left: -53px;
	top: 60px;
	transform: rotate(-45deg);
}

.arrow7 {
	position: absolute;
	height: 13px;
	width: 124.72287142747452px;
	left: 109px;
	top: 64px;
	transform: rotate(-135deg);
}

/* Header */

#header {
	position: relative;
	text-align: center;
	padding-top: 10px;
}

#bclogo {
	margin: 0;
}

#bclogo a, .bc1 a  {
	display: inline-block;
}

#bclogo a:hover, .bc1 a:hover {
	animation: shake 1.5s;
	animation-iteration-count: infinite;
}

.downarrow1 {
	position: relative;
	height: 13px;
	width: 69px;
	margin: 35px auto 30px auto;
	transform: rotate(90deg);
}

.uparrow1 {
	position: relative;
	height: 13px;
	width: 69px;
	margin: 40px auto 30px auto;
	transform: rotate(270deg);
	right: 4px;
}

/* Page Content */

#content {
	position: relative;
	margin: 15px 15% 0 15%;
	width: 70%;
}

hr {
	margin-top: -10px;
	border-width: 0.5px;
}

.maincontent a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #FFFFFF;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.maincontent a:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.name {
	font-style: italic;
}

.dateit {
	font-style: italic;
	float: right;
}

.date {
	float: right;
}

/* Footer */

#footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	text-align: center;
	margin-bottom: 3px;
	height: 19px;
}

/* POTM Winners */

.winners {
	border-collapse: collapse;
	width: 100%;
	margin-top: -20px;
}

.winners td {
	width: 1px;
	white-space: nowrap;
	padding-right: 5%;
}

.winners td h3 {
	margin-bottom: 8px;
}

.winners td:last-child {
	width: 100%;
	white-space: normal;
}

.winners thead tr {
	border-bottom: 0.5px solid #fff;
}

.winners tbody tr:first-child td {
	padding-top: 14px;
}

/* Mobile Layout */

@media only screen and (max-width: 768px) {
	
	li#about {
	left: -60px;
	top: -147px;
	}

	li#teaching {
	left: 173px;
	top: -147px;
	}

	li#contact {
	left: -81px;
	top: 94px;
	}

	li#videos {
	left: 187px;
	top: 94px;
	}
		
	.arrow2 {
	left: -160px;
	}
	
	.arrow4 {
	top: -118px;
	}
	
	.arrow5 {
	left: 120px;
	}
	
	#content {
	margin: 15px 2% 0 2%;
	width: 96%;
	}
	
	/*
	#page-container{
	min-height: -webkit-fill-available;
}*/
}