body {
  font-family: monospace;
}

button {
  margin-bottom: 100px;
  margin: 0 auto;
}

/* Centres a column */
.col-center {
  float: none;
  margin: 0 auto;
}

.centered {
  float: none;
  /* or absolute */
  top: 50%;
  left: 50%;
  align-items: center;
}

.vertical-center {
  min-height: 100%;
  /* Fallback for browsers do NOT support vh unit */
  min-height: 100vh;
  /* These two lines are counted as one :-)       */
  display: flex;
}

.flex-container {
  display: flex;
  min-height: 100vh;
  justify-content: center;
  align-items: center;
}

.clue {
  border-style: solid;
  border-radius: 25px;
  background: #C0C0C0;
}

ul {
  height: 90px;
}

ul {
  overflow: hidden;
  overflow-y: scroll;
}

main>.container {
  padding: 60px 15px 0;
}

.section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.button-column {
  width: 100%;
  align-content: center;
  align-self: center;
  z-index: 2;
  text-align: center;
}

.section video {
  position: absolute;
  top: 0;
  left: 0;
  min-height: 100vh;
  min-width: 100vw;
}

.title {
  font-family: "Montserrat";
  font-weight: 900;
  color: white;
  font-size: 6vw;
  animation: fade-in 2500ms ease-out forwards;
}

.loginButton {
  display: inline-block;
  padding-left: 24px;
  padding-right: 24px;
  height: 50px;
  background-color: #fff;
  color: rgb(4, 204, 4);
  font-family: Arial, Helvetica, sans-serif;
  font-size: large;
  font-weight: 700;
  font-family: "Montserrat";
  border-style: none;
  margin: 10px;
  border-radius: 5px;
  box-shadow: 0px 5px 8px rgba(50,184,59,0.5);
  animation: fade-in 2500ms ease-out forwards;
  box-shadow: 0px 5px 8px rgba(50, 184, 59, 0.5);
}

.tableFixHead {
  overflow-y: auto;
  height: 500px;
}

.tableFixHead thead th {
  position: sticky;
  top: 0;
}

/* Just common table stuff. Really. */
table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 100px;
}

th, td {
  padding: 8px 16px;
}

th {
  background: #eee;
}

.loginButton:hover{
  background-color: lightgreen;
  color: white;
}

.pgHeader{
  color: white;
  font-weight: 900;
}

.backButton{
  position: absolute;
  top:20px;
  left: 20px;
  z-index: 2;
  border-style: none;
  font-family: "Montserrat";
  border-radius: 5px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: white;
}

.backButton:hover{
  background-color: lightgreen;
  cursor: pointer;
  color: white;
}

.form-button{
  border-style: none;
  font-family: "Montserrat";
  border-radius: 5px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: white;
}
.form-button:hover{
  background-color: lightgreen;
  cursor: pointer;
  color: white;
}

.field-title{
  color: white;
  font-family: "Montserrat";
  font-weight: 400;
  margin-top: 20px;
  font-size: medium;
}

.login-form{
  width: 100%;
}

@keyframes fade-in{
  0%{
    opacity: 0%;
  }
  100%{
    opacity: 100%;
  }
}
