body {
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
  background-color: rgb(220,220,220);
}

#header {
  width: 100%;
  display: inline-flex;
  flex-direction: column;
  background: rgb(30,30,30);
  margin-bottom: 10px;
}

#content {
  margin-left: 10px;
  margin-right: 10px;
}

#mainTitle {
  color: #f1f1f1;
  text-align: center;
  font-size: 24px;
}

#mainTitle h1 {
  font-size: 24px;
  font-weight: normal;
}

/* Navbar container */
.navbar {
  z-index: 10;
}

/* Links inside the navbar */
.navbar a {
  float: left;
  font-size: 16px;
  color: #f1f1f1;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a green background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: green;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 10;
  max-height: 300px;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

footer {
  font-size: 12px;
  width: 100%;
  left: 0;
  bottom: 0;
  text-align: center;
}

.titleAndDifficultyGrid {
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: center;
  align-content: space-evenly;
  grid-column-gap: 30px;
  margin-left: 20px;
  margin-right: 20px;
}

.rulesList li {
  padding: 3px;
}

button.link {
  background: none;
  border: none;
  padding: 0;
  font-family: "Times New Roman", Times, serif;
  color: #069;
  text-decoration: underline;
  cursor: pointer;
}

.dateStamp {
  font-size: 14px;
  font-style: italic;
  text-align: center;
  color: green;
}

#footer {
  margin-top: 30px;
}

#copyrightInfo {
  font-style: italic;
  font-size: 12px;
}

#contact {
  margin-top: -4px;
}

.rulesHeader {
  font-size: 22px;
}

.myTable {
  border-collapse: separate;
  background:#fff;
  @include border-radius(5px);
  margin: auto;
  @include box-shadow(0px 0px 5px rgba(0,0,0,0.3));
}

.myTable thead {
  @include border-radius(5px);
}

.myTable thead th {
  font-family: 'Patua One', cursive;
  font-size:16px;
  font-weight:400;
  color:#fff;
  @include text-shadow(1px 1px 0px rgba(0,0,0,0.5));
  text-align:left;
  padding:20px;
  @include background-image(linear-gradient(#646f7f, #4a5564));
  border-top:1px solid #858d99;
  
  &:first-child {
   @include border-top-left-radius(5px); 
  }

  &:last-child {
    @include border-top-right-radius(5px); 
  }
}

.myTable tbody tr td {
  font-family: 'Open Sans', sans-serif;
  font-weight:400;
  color:#5f6062;
  font-size:13px;
  padding:10px 20px 10px 20px;
  border-bottom:1px solid #e0e0e0; 
}

.highlightedFirstRowTable tbody tr:nth-child(2) td {
  color:red;
}

.myTable tbody tr:nth-child(2n) {
  background:#f0f3f5;
}

.myTable tbody tr:last-child td {
  border-bottom:none;
  &:first-child {
    @include border-bottom-left-radius(5px);
  }
  &:last-child {
    @include border-bottom-right-radius(5px);
  }
}

.myTable tbody:hover > tr td {
  @include opacity(0.5);
  
  /* uncomment for blur effect */
  /* color:transparent;
  @include text-shadow(0px 0px 2px rgba(0,0,0,0.8));*/
}

.myTable tbody:hover > tr:hover td {
  @include text-shadow(none);
  color:#2d2d2d;
  @include opacity(1.0);
}

@font-face {
  font-family: 'MTCORSVA';
  src: url('fonts/Monotype_Corsiva/MTCORSVA.eot');
  src: local('MTCORSVA'), url('fonts/Monotype_Corsiva/MTCORSVA.woff') format('woff'), url('fonts/Monotype_Corsiva/MTCORSVA.ttf') format('truetype');
}

.monotypeCorsiva {
  font-family: 'MTCORSVA';
}

div.gallery {
  margin: 5px;
  border: 1px solid #ccc;
  float: left;
  width: 180px;
}

div.gallery:hover {
  border: 1px solid #777;
}

div.gallery img {
  width: 100%;
  height: auto;
}

div.desc {
  padding: 15px;
  text-align: center;
}

div.copyright {
  font-size: 10px;
  padding: 10px;
  text-align: center;
}