header {
    background: #ffffff;
    height: 200px;
}

h1 {
	text-align: center;
}

h2 {
	margin-left: 1rem;
}

body {
    margin: 2rem;
}

p {
	margin-left: 1rem;
	font-size: 1.5rem;
	/* text-align: center; */
	font-size: 1rem;
}

table {
    border-collapse: collapse;
    background-color: #eee;
    width: 100%;
}

th {
    font-size: 20px;
    border: 1px solid Black;
    text-align: left;
    padding: 5px 10px;
}

td {
    font-size: 18px;
    border: 1px solid Black;
    text-align: left;
    padding: 2px 10px;
}

tr:nth-child(even) {
    background-color: #dddddd;
}

ul {
    font-size: 18px;
}

li {
    font-size: 18px;
}

.person-photo {
    margin: 1% 1% 3%;
}

.about-person {
    text-align: center;
    margin: 0 15%;
}

.person-photo {
    border-radius: 30%;
    height: 30%;
    width: 30%;
}

.sub-menu {
    font-size: 1rem;
}

.before-class{
    margin-top: 5rem;
    text-align: justify;
}

.before-class h1 {
    text-align: center;
}

@media (min-width: 992px){
	.dropdown-menu .dropdown-toggle:after{
		border-top: .3em solid transparent;
	    border-right: 0;
	    border-bottom: .3em solid transparent;
	    border-left: .3em solid;
	}
	.dropdown-menu .dropdown-menu{
		margin-left:0; margin-right: 0;
	}
	.dropdown-menu li{
		position: relative;
	}
	.nav-item .submenu{ 
		display: none;
		position: absolute;
		left:100%; top:-7px;
	}
	.nav-item .submenu-left{ 
		right:100%; left:auto;
	}
	.dropdown-menu > li:hover{ background-color: #ff9900; color: #232f3e }
	.dropdown-menu > li:hover > .submenu{
		display: block;
	}
	.nav-item > a:hover{ background-color: #ff9900; color: #232f3e; }
	.submenu > li > .dropdown-item:hover{ background-color: #ff9900; color: #232f3e; }
}

/* Floating menu to go between days on class schedule */
/* copied by bradswer @ 2021-06-14 from Octavio Torres: https://codepen.io/octa022/pen/MPjjRd */

/*
 * Container - Button
 */
.float {
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color: #ff9900;
	color:#232f3e;
	border-radius:50px;
	text-align:center;
	box-shadow: 2px 2px 3px #999;
	z-index:1000;
	animation: bot-to-top 2s ease-out;
}
/*
 * Submenu - Buttons
 */
ul.floatitem {
	position: fixed;
	right: 40px;
	padding-bottom: 10px;
	bottom: 80px;
	z-index: 100;
}
ul.floatitem li {
	list-style: none;
	margin-bottom: 10px;
}
ul.floatitem li a {
  width: 60px;
	height: 60px;
	background-color: #ff9900;
	color: #232f3e;
	border-radius: 50px;
	text-align: center;
	box-shadow: 2px 2px 3px #999;
	display: block;
}
/* Hidden Buttons */
a.float + ul {
  visibility: hidden;
}
/* Visible Buttons */
a.float:hover + ul {
  visibility: visible;
  animation: scale-in 0.5s;
}
ul.floatitem:hover {
	visibility: visible !important;
}
/* Center icons */
a i.icon {
	font-size: 24px;
	margin-top: 18px;
}
/*
 * Animations
 */
a.float i {
	animation: rotate-in 0.5s;
}
a.float:hover > i {
	animation: rotate-out 0.5s;
}
@keyframes bot-to-top {
    0%   {bottom: -60px}
    50%  {bottom: 40px}
}
@keyframes scale-in {
    from {transform: scale(0);opacity: 0;}
    to {transform: scale(1);opacity: 1;}
}
@keyframes rotate-in {
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
}
@keyframes rotate-out {
    from {transform: rotate(360deg);}
    to {transform: rotate(0deg);}
}

