html, body {
  height: 100%;
}

body {
  font-family: 'Friz Quadrata', serif;
  background: url('../img/bg5.png') no-repeat center center fixed;
  background-size: cover;
  color: #f8f8f8;
  margin: 0;
  padding: 0;
  flex-direction: column;
  display: flex;
}

main {
  flex: 1;
}

.menu ul {
  list-style: none;
  display: flex;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.7);
  margin: 0;
  padding: 1rem 0;
}

.menu ul li {
  margin: 0 1.5rem;
}

.menu ul li a {
  color: #f0d000;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
}

header {
  text-align: center;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.6);
}

main {
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.5);
  max-width: 900px;
  margin: auto;
  border-radius: 10px;
}

h1 {
  font-size: 2.5rem;
  color: #f0d000;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: rgba(20, 20, 20, 0.8);
}

thead th {
  background-color: #1c1c1c;
  color: #f0d000;
  padding: 0.8rem;
  cursor: pointer;
}

tbody td {
  padding: 0.8rem;
  text-align: center;
  border-top: 1px solid #444;
}

a {
  color: #66ccff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

#patronite-gold {
  font-weight: bold;
  animation: gold-glow 0.5s infinite alternate;
}

#patronite-silver {
  font-weight: bold;
  animation: silver-glow 1s infinite alternate;
}

#patronite-bronze {
  font-weight: bold;
  animation: bronze-glow 2s infinite alternate;
}

footer {
  background-color: rgba(0, 0, 0, 0.6);
  color: #f0d000;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

footer a {
    color: #fff;
    text-shadow: 0.5px 1px 0px rgb(248, 5, 249);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@keyframes gold-glow {
  0% { color: #FFFF99; }
  100% { color: #FFB200; }
}

@keyframes silver-glow {
  0% { color: #b0e3ff; }
  100% { color: #4c7aff; }
}

@keyframes bronze-glow {
  0% { color: #A17A74; }
  100% { color: #8A3324; }
}