@font-face {
    font-family:"WilliamTextStd";
    src:url("../fonts/WilliamTextStd-Regular.woff2") format("woff2"),url("../fonts/WilliamTextStd-Regular.woff") format("woff"),url("../fonts/WilliamTextStd-Regular.otf") format("opentype");
    font-style:normal;
    font-weight:400;
}

@font-face {
    font-family:"WilliamTextStd-Bold";
    src:url("../fonts/WilliamTextStd-Bold.woff2") format("woff2"),url("../fonts/WilliamTextStd-Bold.woff") format("woff"),url("../fonts/WilliamTextStd-Bold.otf") format("opentype");
    font-style:normal;
    font-weight:400;
}

* {
	margin: 0;
	box-sizing: border-box;
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
	font-family: "WilliamTextStd", Times, serif;
}

.nav-content {
	padding: 1% 0 10%;
	text-decoration: none;
}

*::selection {
	background: red;
	color: #fff;
}

h2 {
	font-size: 3.5vw;
	line-height: 1.2;
	font-weight: normal;
}

h3 {
	font-size: 2.4vh;
	line-height: 1.25;
	font-weight: normal;
}

b {
	font-family: "WilliamTextStd-Bold", serif;
	font-weight: normal;
}

h4 {
	font-size: 1.4vw;
	line-height: 1.2;
	font-weight: normal;
}

p {
	font-size: 1.7vw;
	line-height: 1.25;
	letter-spacing: -0.02rem;
}

a {
	text-decoration: none;
}

a:hover {
	color: red;
}

h3 a,
p a {
	text-decoration: none;
	color: #000;
}

.course-info {
	position: fixed;
	display: flex;
	justify-content: space-between;
    top: 100%;
    -ms-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    height: 13.5%;
    width: 100vh;
    min-height: 10px;
    border-bottom: 1px solid #000;
    background-color: #fff;
}

.col {
	padding: 2%;
}

section {
	padding-bottom: 3%;
}

#col-2 {
	padding-left: 18vh;
}

.assignment {
	padding: 1.25% 1.5% 1.5% 0;
	border-bottom: 1px solid #000;
}

.close {
	width: 20%;
	height: 100%;
	overflow-y: hidden;
	position: fixed;
	top: 0;
	left: 0;
}

.close:hover {
	pointer: hand;
}

#index {
	position: fixed;
	top: 0;
	left: 0;
	z-index: -999;
	width: 100%;
	height: 100%;
	opacity: .5;
}

.page-content {
	top: 0;
    right: 0;
    position: absolute;
    width: 80%;
    background-color: #fff;
    padding: 1% 2%;
    border-left: 1px solid #000;
}

.page-content p {
	padding-bottom: 3.1%;
}

.page-content a {
	border-bottom: 1px solid #000;
}

#heading-tb {
	padding-bottom: 1.6%;
}

.date {
	color: #656565;
}

.assignment:hover a {
	color: red;
}

.selected {
	text-decoration: none;
}

.indent,
p .indent {
	text-indent: 0;
	padding-left: 40px;
	display: block;
}

.no-indent {
	text-indent: 0;
}

.italic {
	font: 
}

.nav {
	position: fixed;
	top: 0;
	margin-top: 40px;
}

.nav p {
	text-indent: 0;
}

img {
	width: 100%;
	margin-bottom: 40px;
}

.rule {
	border-bottom: 1px solid #000;
}

.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#mobile {
	display: none;
}

@media only screen and (max-width : 900px) {
	.page-content {
		width: 70%;
	}

	.close {
		width: 30%;
	}

	p {
		font-size: 2.6vw;
	}
}

@media only screen and (max-width : 600px) {
	h3 {
		font-size: 2.7vw;
	}

	p {
		font-size: 4vw;
	}

	#col-2 {
		padding-left: 0;
	}

	#mobile {
		display: flex;
	}

	.course-info {
		position: fixed;
		top: 0;
	    -ms-transform: rotate(0deg);
	    -webkit-transform: rotate(0deg);
	    transform: rotate(0deg);
	    height: auto;
	    width: 100vw;
	    min-height: 10px;
	    border-bottom: 1px black solid;
	    z-index: 999;
	}

	.nav-content {
		padding-top: 20%;
	}

	.page-content {
		padding: 20% 2%;
		width: 100%;
		border-left: 0;
	}

	.assignment {
		border-bottom: 1px solid #000;
	}

}