

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial;
  color: black;
	background-image: url("Backgrounds/Golf.png");
	background-repeat: no-repeat; 
}

/* Header for entire page */
.header {
  text-align: center;
  font-size: 1.5em;
  color: darkblue;
  padding: 10px;
  text-decoration: underline;
}

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 10px 4px;
}

/* Create three equal columns that sit next to each other */
.column {
  flex: 33.3%;
  max-width: 33.3%;
  padding: 0 2px;
}

/* Headers for each column */
.column h3 {
   text-align: center;
   font-size: 1.5em;
   color: darkblue;
   text-decoration: underline;
   }
   
.column li {
   list-style-type: none;
   background-color: #3D3C3A;
   margin-bottom: 10px;
   width: 95%; 
   height: 3em;
   box-shadow: 6px 6px 8px #5C5C8A;
   }

.column a {
	padding: 4px;
   font-size: 1.4em;
   text-align: center;
   color: white;
   text-decoration: none;
   display: block;
   }
   
.column li:hover {
    background-color: #625D5D;
	position: relative;
   }

/*  Formats the data-title in a link to display as popup when hovered */
.column a[data-title]:hover:after{
	font-size: .8em;
	content: attr(data-title);
	padding: 8px 12px;
	color: #85003a;
	position: absolute;
	left: 150px;
	top: -70px;
	white-space: nowrap;
	z-index: 20;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-moz-box-shadow: 0px 0px 2px #c0c1c2;
	-webkit-box-shadow: 0px 0px 2px #c0c1c2;
	box-shadow: 0px 0px 2px #c0c1c2;
	background-image: -moz-linear-gradient(top, #ffffff, #eeeeee);
	background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #ffffff),color-stop(1, #eeeeee));
	background-image: -webkit-linear-gradient(top, #ffffff, #eeeeee);
	background-image: -moz-linear-gradient(top, #ffffff, #eeeeee);
	background-image: -ms-linear-gradient(top, #ffffff, #eeeeee);
	background-image: -o-linear-gradient(top, #ffffff, #eeeeee);
	}

/* Responsive layout */
@media (max-width: 800px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
}