@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap');
:root {
	--chrome_orange: #945C21;
	--chrome_blue: #67A8A6;
	--chrome_purple: #46094F;
	--chrome_pink: #D991DA;
	--chrome_gray: #B6B3A2;
}

body {
    margin: 0;
    background-color:#CCC;
    background-image:url("season22.jpg");
    background-size: cover;
    background-attachment: fixed;
    height:100%;
    color: #FAF884;
    font-family: 'Fjalla One', sans-serif;
}

img {
    vertical-align:middle;
	background-position: center;
}

/* Main Logo Image */
#logomain {
    margin-right: auto;
    margin-left: auto;
    width:100%;
    height: 0;
    padding-top: 20%;
    max-width:350px;
    background-image:url('fap_logo.png');
    background-repeat:no-repeat;
    background-size:contain;
	background-position: center;
}

.menu {
	margin-bottom: 5px;
	margin-right: auto;
    margin-left: auto;
    width: 50%;
	min-width:500px;
    overflow: hidden;
    display: flex;
    list-style-type: none;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    vertical-align: middle;
    font-weight: bold;
    font-size: 24px;
	text-decoration: none;
    background: var(--chrome_purple);
    border-radius: 12px;
	
}

.menu a, .menu span {
	margin-right: 15px;
    margin-left: 15px;
	text-decoration: none;
	color: var(--chrome_pink);
}

.menu a:hover {
	color: var(--chrome_orange);
}

.dropdown-content a:hover {
	color: var(--chrome_orange);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--chrome_gray);
    min-width: 160px;
    padding: 12px 16px;
    z-index: 2;
    max-height:200px;/* you can change as you need it */
    overflow:auto;/* to get scroll */
    border-radius: 18px;
}

.dropdown-content a {
	color: var(--chrome_purple);
}

.dropdown:hover .dropdown-content {
  display: block;
}

.container {
    margin-bottom: 5em;
	margin-right: auto;
    margin-left: auto;
    background: var(--chrome_gray);
    box-shadow: 10px 10px 5px var(--chrome_purple);
    box-sizing: border-box;
    width: 50%;
	min-width:600px;
	padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 12px;
}

.post {
	color: var(--chrome_blue);
	background: var(--chrome_purple);
    padding: 5px;
	margin: 5px 5px 1em 1em;
    width: 95%;
    height: auto;
	border-radius: 12px;
	font-size: 18px;
}

.post h1{
	text-align: center;
	margin-top: 2px;
	margin-bottom: 1.5px;
	font-size: 38px;
	color: var(--chrome_orange);
}

.post #subtitle {
	text-align: center;
	font-style: italic;
	margin-top: 1.5px;
	font-size: 16px;
}

table {
    margin-left: auto;
	margin-right: auto;
	margin-bottom: 5px;
	padding: 5px 5px 5px 10px;
    text-align: center;
    width: 98%;
    height: auto;
    border-style: none;
	border-spacing: 0 5px;
	background: var(--chrome_purple);
	border-radius: 0 0 12px 12px;
	color: var(--chrome_purple);
}

caption {
	margin-top: 5px;
	color: var(--chrome_blue);
    font-size: 32px;
    font-weight: bold;
	background: var(--chrome_purple);
	border-radius: 12px 12px 0 0;
}

th {
    font-size: 26px;
	color: var(--chrome_pink);
}

tr {
    border-radius: 12px;
    font-size: 22px;
}

thead, tbody {
    text-align: center;
}

td {
    padding: 10px;
    border-collapse: collapse;
    border-style: none;
}

td:first-child { 
    border-top-left-radius: 10px; 
    border-bottom-left-radius: 10px;
    width: 5%;
}

td:nth-child(2) {
    width: 5%;
}

td:last-child { 
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

tbody tr:hover {
    filter: brightness(90%);
}

#first {
    color: #FFF;
    background: #CFB53B;
    background: linear-gradient(to bottom, #CFB53B 0%, #C0A62C 100%);
}

#second {
    color: #000;
    background: #C0C0C0;
    background: linear-gradient(to bottom, #C0C0C0 0%, #B1B1B1 100%);
}

#third {
    color: #FFF;
    background: #9C7C38;
    background: linear-gradient(to bottom, #9C7C38 0%, #8D6D29 100%);
}

#even {
    background: var(--chrome_blue);
}

#odd {
    background: var(--chrome_gray);
}

#footer {
    margin: auto;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
	z-index: 1;
    background: var(--chrome_purple);
    text-align: center;
	color: var(--chrome_pink);
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--chrome_orange);
  background: var(--pastel_pink);
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--chrome_purple);
  border-radius: 5px;
}