@import url("reset.css");

* {
  box-sizing: border-box;
}
[class*="col-"] {
  float: left;
  padding: 5px;
}
.col-1 {width: 5%;}
.col-2 {width: 5%;}
.col-3 {width: 80%;}
.col-4 {width: 5%;}
.col-5 {width: 5%;}
.row::after {
  content: "";
  clear: both;
  display: table;
}
body {
  	background-color: #2D377C;
	font-family: Raleway, sans-serif;
	color: #dcdfcd;
	}
ul {
	list-style-type: none;
	list-style-position: inside;
        margin: 0 auto;
	max-width: 50%;
}
li {
	text-align: center;
	font-weight: normal;
	color: #DCB32D;
	font-size: 22px;
	margin-bottom: 5px;
	padding: 2px;
}

h1 {
	text-align: center;
	font-size: 48px;
	color: #dcdfcd;
	text-shadow: 1px 2px 3px #C3822C;
        padding: 2px;
	}
h2 {
	text-align: center;
	color: #DCB32D;
	font-size: 30px;
	text-shadow: 1px 1px 1px #5E3826;
	padding: 2px;
}
p {
	text-align: center;
	color: #DCB32D;
	font-size: 22px;
	}
img {
	height: auto;
    max-width: 100%;
}

a:link {
	color: #dcdfcd;
	text-decoration: none;
	}	
a:visited {
	color: #C3822C;
	text-decoration: none;
	}
a:active {
	color: #5E3826;
	}
a:hover {
	color: #D44740;
	font-weight: bold;
	}
hr {
        height:1px;
        border-width:0;
        background-color:#2c5391;
        width: 33%;
}
table, th, td {
	margin: 0 auto;
        padding: 5px;
	font-size: 20px;
}
th, td {
        border: 1px dotted #736A46;
	color: #D8BD3B;
}
th {
	font-weight: bold;
}
.thumbnails {
	width:  60%;
	height: 150px;
	margin: auto;
	text-align:center;
 	overflow-x: scroll;
	overflow-y: hidden;
	white-space: nowrap;
}
.thumbnails img {
	opacity: 0.8;
	margin: auto;
	cursor: pointer;
	padding: 2px;
}
.thumbnails img:hover {
	opacity: 1;
}
.grow {
  display: flex;
  flex-wrap: wrap;
}

.gcolumn {
  flex: 33%;
  padding: 4px;
}

.gcolumn img {
  vertical-align: middle;
}

.gcolumn img:hover {
  opacity: .8;
}

.container {
   position: relative;
   text-align: center;
}

.brow {
  display: flex;
  flex-wrap: wrap;
  padding: 4px;
}

.bcolumn {
  flex: 50%;
  padding: 4px;
}

.bcolumn img {
  margin-top: 8px;
  vertical-align: middle;
}

.bcolumn img:hover {
  opacity: .8;
}

.title {
  position: absolute;
  bottom: 5px;
  right: 5px;
  color: #dcdfcd;
  font-size: 18px;
  text-shadow: 2px 1px 1px #D44740;
}

.btitle {
  position: absolute;
  bottom: 5px;
  right: 5px;
  color: #dcdfcd;
  font-size: 48px;
  font-weight: bold;
  text-shadow: 2px 1px 1px #D44740;
}

::-webkit-scrollbar {
    width: 12px;
}
 
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(183, 162, 63, 0); 
    border-radius: 10px;
}
 
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(188, 194, 141, 1); 
}