html {
    font-family: "Lucida Sans", sans-serif;
	height: 100%;
}

body {
    background-color: #e6e6e6;
	min-height: 100%;
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 8px;
	margin-right: 8px;
}

* {
    box-sizing: border-box;
}

.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

[class*="col-"] {
    float: left;
    padding: 15px;
    border: none;
}

.row::after {
    content: "";
    clear: both;
    display: table;
}

.header {
    /* background-color: #9933cc;
    color: #ffffff;
    padding: 15px; */
}

.menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
}
.menu li {
    float: left;
}

.menu li a{
display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
	
.menu li a:hover:not(.active) {
    background-color: #111;
}

.menu li a.active {
	background-color: #ffbf00;
}

.menu li.right {
	float: right;
}

.grid-container {
	display: grid;
	grid-gap: 50px;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto;
	height: 85vh;
	background-color: #e6e6e6;
	padding: 20px;
	overflow: auto;
	align-items: center;
}

.grid-item {
	background-color: #ffbf00;
	border: 5px outset #bfbfbf;
	border-radius: 25px;
	padding: 20px;
	font-size: 20px;
	text-align: center;
}

.grid-item_link {  
    display: block;
    height: 100%;
    padding: 0px;
	color: black;
    text-decoration: none;
}

.footer {
    position: fixed;
    bottom: 0;
	/* left: 0; */
    width: calc(100% - 16px);
	/* width: 100%; */
	background-color: #333;
    color: white;
    text-align: center;
/* 	box-sizing: border-box;
    display: block; */
}


.footer ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: #333;
}

.footer a {
	color: #bfbfbf; 
    background-color: transparent; 
    text-decoration: none;
}

.vcard .fn{
	font-weight: bold;
	color: #bfbfbf;
}

.vcard {
	color: #bfbfbf;
}

@media screen and (max-width: 600px){
    ul.topnav li.right, 
    ul.topnav li {float: none;}
	
	.footer {
		position: relative;
		width: 100%;
	}
	
	[class*="col-"] {
        width: 100%;
    }
}

.intrinsic-container {
  position: relative;
  height: 0;
  overflow: hidden;
}
 
/* 16x9 Aspect Ratio */
.intrinsic-container-16x9 {
  padding-bottom: 56.25%;
}
 
/* 4x3 Aspect Ratio */
.intrinsic-container-4x3 {
  padding-bottom: 75%;
}
 
.intrinsic-container iframe {
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
}