/*
Ace Shiny Hunters Style Sheet
*/

/* Reset code */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  text-decoration: none;
}
em {
  font-style: italic;
}

/* Fonts */
body {
  font-family: 'Source Sans Pro', sans-serif;
  max-width: 100vw;
  max-height: 100%;

}

/* Styles */

header {
  padding-left: 2.5vw;
  padding-right: 2.5vw;
  padding-top: 2.5vh;
  width: 95vw;
  position: absolute;
  z-index: 100;
  background-color: white;
}

h1 {
  font-size: 4rem;
  font-weight: 800;
}

h2 {
  margin: 30px 0;
  font-size: 2rem;
  font-weight: 800;
}


.content-container {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  position: absolute;
}

.content {
  margin-top: 250px;
  margin-bottom: 150px;
  display: none;
}

footer {
  position: fixed;
  bottom: 0;
  z-index: 100;
  width: 100%;
  height: 10%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}

footer nav {

  padding-top: 10px;
  padding-left: 2.5vw;
  padding-right: 2.5vw;
  background-color: black;
  padding-bottom: 6vh;
  border-top-right-radius: 25px;
  border-top: solid white 2px;
  border-right: solid white 2px;
}

footer nav a {
  font-size: 2rem;
  color: white;
  font-weight: 800;
  margin-right: 50px;
}

footer .footer-right {
  color: white;
  flex-grow: 1;

}

.footer-right-content {
  border-top: solid white 2px;
  padding-right: 2.5vw;
  padding-left: 2.5vw;
  margin-top: 5vh;
  background-color: black;
  display: flex;
  flex-direction: row-reverse;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: right;
  line-height: 0.75rem;
}

.fa-discord {
  animation: spin-animation 10s infinite;
  display: inline-block;
  animation-delay: 5s;
}

@keyframes spin-animation {
  0% {
    transform: rotate(0deg);
    opacity: 1;
  }
  10% {
    transform: rotate(359deg);
  }
  100% {
    transform: rotate(359deg);
  }
}

.tms {
  font-size: 0.8rem;
}

table {

  margin-bottom: 10vh;
  margin-left: 2.5vw;
  margin-right: 2.5vw;
  margin-top: 100px;

  width: 95vw;
}

table thead {
  background-color: black;
  color: white;
}

table thead th {
  font-size: 2rem;
  font-weight: 800;
  vertical-align: middle;
  height: 100px;
}

table td {
  vertical-align: middle;
  text-align: center;
  height: 100px;
}

table tr {
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: black;
}

table img {
  max-height: 100px;
}

.row_status.caught {
  background-color: #9acf92;
}

.row_status.claimed {
  background-color: #ffaf6c;
}

#progress, #rules {
  margin-left: 2.5vw;
  margin-right: 2.5vw;
}

#progress p {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

#progress p .answer {
  font-weight: 800;
}

.log {
  display: none;
}

.participation-row td {
  font-weight: 800;
}

thead.log th {
  font-size: 1.5rem;
  font-weight: 800;
  vertical-align: middle;
  height: 70px;
}

#participants i {
  cursor: pointer;
}

#rules ul {
  list-style: disc;
  padding-left: 20px;
}

#rules li {

  margin-bottom: 10px;
}

@media only screen and (max-width:1139px) {
 
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  table thead th {
    font-size: 1rem;
    padding: 20px 0;
  }
  
  table thead th {
    height: auto;
  }
  
  .footer-right-content {
    font-size: 0.75rem;
  }
  
  .content {
    margin-top: 300px;
  }
  
  .footer-navigation {
    flex-direction: column;
  }
  
  footer nav a {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  footer nav {
    padding-bottom: 2vh;
  }
  
  .tms {
    font-size: 0.6rem;
  }
  
  thead.log th {
    font-size: 1rem;
    height: auto;
    padding: 10px;
  }
  
}