/* HTML-Elemnt Styles */
body {
  background-color: #001f3f;
  margin: 0;
}

pre {
  margin: 0;
  color: #555555;
  font-size: 20px;
}

pre>a {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

h2 {
  color: #555555;
  font-size: 50px;
  text-align: center;
}

h3 {
  color: #555555;
  font-size: 35px;
  text-align: center;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #555555;
  margin: 2em;
  padding: 1em;
}
/* HC-Class Styles */ 
.intro-container {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #001f3f;
  position: relative;
  margin: 1rem;
}

.scoreBoardServerselect {
  padding: 1rem;
  margin: 2rem;
}

.scoreBoardServerselect select {
  margin: 1rem;
}

div.scoreTable {
  display: flex;
  justify-content: center;
}

div.scoreboardServerselect {
  color: white;
  display:flex;
  font-size: 25px;
  justify-content: center;
}

section.scoreboard table {
  font-size: 200%;
  margin: 2rem;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.074);
  border: 1px solid rgba(255, 255, 255, 0.222);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 0.7rem;
  transition: all ease 0.3s;
}

section.scoreboard thead {
  font-size: 20px;
  text-decoration: underline;
}

section.scoreboard td,
section.scoreboard th {
  border: 1px solid #5f5f5f;
  margin: 0.5rem;
  padding: 0.5rem;
  color: lightseagreen;
}

section.scoreboard tr:nth-child(even) {
  background-color: hsl(210, 100%, 20%);
}