* {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
/*font-family: garamond, georgia, serif;*/
/*font-family: cursive;*/
  line-height: 125%;
}

.table {
  display: grid;
  width: 100%; /* Ensure the table takes up the full width of its container */
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
  gap: 10px;
}

.row, .rowSmall {
  display: grid;
  gap: 10px;
  width: 100%;
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.row {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Ensure columns stretch within each row */
}

.rowSmall {
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); /* Ensure columns stretch within each row */
}

.cell {
  box-sizing: border-box;
  word-wrap: break-word;
}

body {
  margin: 0;
}

body .live-banner {
  width: 100%;
}
body .live-banner p {
  margin: 0;
  padding: 16px;
  font-weight: 500;
}
body .live-banner p a {
  text-decoration: none;
}
body .live-banner p a:hover {
  text-decoration: underline;
}

header {
  margin: 0;
  padding: 10px;
  min-height: 100vh;
}

header img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.5s;
}
header .signature {
  margin-top: 15px;
  max-width: 35%;
}
header .date {
  max-width: 30%;
}
header a {
  outline: none;
  text-decoration: none;
}

header .big-title {
  margin-bottom: 5px;
  text-align: center;
  font-family: brush script mt, cursive;
  font-size: 50px;
  max-width: 600px;
  width: 100%;
  padding-top: 20px; 
  padding-bottom: 20px;
}

header .big-date {
  margin-bottom: 5px;
  text-align: center;
/*font-family: brush script mt, cursive;*/
  font-family: garamond, georgia, serif;
  font-size: 30px;
  padding-bottom: 20px;
}
header h3, header h2 {
  margin-bottom: 5px;
/*font-family: cursive;*/
}
header .big-boi {
  font-size: 20px;
}
header p {
  margin-top: 0px;
}

@media screen and (max-width: 1000px) {
  header .signature {
    max-width: 60%;
  }
  header .date {
    max-width: 50%;
  }
}

td a:hover	{
  background: #7243bf;
}

.footnote {
  font-size: 12px;
}

.line {
  width: 100%;
  height: 1px;
  border-radius: 20px;
}

.container {
  width: 65%;
  margin-left: auto;
  margin-right: auto;
}

.blurred {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  border-radius: 15px;
  padding-top: 1px;
  padding-bottom: 5px;
}

@media screen and (max-width: 1000px) {
  .container {
    width: 90%;
  }
  header .big-date {
    font-size: 23px;
  }
}

.gradientButton:not(disabled), .navButton {
  color: white;
  display: block;
  background: rgb(43,93,110);
  background: linear-gradient(0deg, rgba(43,93,110,1) 0%, rgba(95,164,162,1) 100%);
  padding: 10px;
  border-radius: 15px;
  text-align: center;
  text-decoration: none;
  align-content: center;
  border: none;
}

.gradientButton {
  border: none;
  font-weight: 600;
  font-size: 16px;
  padding: 20px;
}

.navButton {
  height: 75px;
}

.navButton:hover, .gradientButton:hover:not(disabled) {
  background: #2c5e6f;
  cursor: pointer;
}

.navButtonDisabled, .gradientButton:disabled {
  color: #b9b9b9;
  display: block;
  background: #12272e;
  padding: 10px;
  border-radius: 15px;
  text-align: center;
  text-decoration: none;
  align-content: center;
}

.navButtonDisabled {
  height: 75px;
}