/* #region everything */
body {
  margin: 0;
  background-color: lightblue;
  color: black;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  overflow-x: hidden;
}

html {
  scrollbar-gutter: stable;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: inherit;
    font-size: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    color: inherit;
    background: none;
}

main {
    min-height: 100vh;
    margin: 0 auto;
    margin-top: 80px;
    margin-bottom: 50px;
    width: 95%;
    line-height: 30px;
    font-size: medium;
}
/* #endregion */

/* #region header */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 2.5%;
  padding-right: 2.5%;
  background-color: navy;
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

header button:hover, header a:hover {
  color: orange;
}

.hamburger button {
  font-size: x-large;
  border: none;
}

.header-logo a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.header-logo a span {
  font-size: x-large;
  font-weight: bold;
}

.header-logo a img {
  border-radius: 50%;
}

.header-login-or-user-icon #header-login-btn {
  border-radius: 10%;
  width: 40px;
  height: 40px;
  border: 2px solid white;
  font-size: x-large;
  font-weight: bold;
  display: none;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.header-login-or-user-icon #header-user-icon-btn {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: 2px solid white;
  font-size: x-large;
  font-weight: bold;
  display: none;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.header-login-or-user-icon #header-login-btn:hover {
  border: 2px solid orange;
}

.header-login-or-user-icon #header-user-icon-btn:hover {
  border: 2px solid orange;
}
/* #endregion */

/* #region hamburger-menu */
.hamburger-menu {
  position: fixed;
  left: -100%;
  width: 75%;
  height: 100%;
  background-color: #dde9fc;
  z-index: 90;
  font-size: larger;
  overflow-y: auto;
  overflow-x: hidden;
  transition: left 0.3s ease;
  padding-top: 10px;
  border-right: 5px solid gray;
  pointer-events: auto;
}

#menu-overlay {
  display: none; 
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3); 
  z-index: 88; 
  pointer-events: all;
  touch-action: none;
}

.hamburger-menu.active {
  left: 0;
}

.hamburger-menu a {
  margin-left: 5%;
  margin-right: 5%;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  height: 30px;
  align-items: center;
  font-weight: bold;
}

.hamburger-menu a:hover {
  color: rgb(2, 131, 141);
}

.hamburger-menu a .menu-list-icons {
  font-size: 30px;
}

.hamburger-menu hr {
  border: none;
  height: 1px;
  background-color: gray;
}

.hamburger-menu .follow-us-on-hamburger {
  margin-bottom: 50px;
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 2.5%;
  align-items: center;
  font-size: x-large;
  font-weight: bold;
}

.hamburger-menu .follow-us-on-hamburger .twitter:hover,
.hamburger-menu .follow-us-on-hamburger .pinterest:hover {
  transform: scale(1.15);
}
/* #endregion */

/* #region footer */
footer {
  background-color: navy;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 5%;
}

footer a:hover {
  color: orange;
}

.footer-legal-pages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 20px;
  text-align: center;
  margin-top: 10px;
}

.footer-branding {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  row-gap: 5px;
  text-align: center;
}
/* #endregion */

/* #region cookie-banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  flex-direction: column;
  gap: 5px;
  left: 0;
  right: 0;
  background: #dde9fc;
  color: black;
  z-index: 95;
  display: none;
  font-size: large;
  border-top: 5px solid black;
  padding-top: 1px;
  padding-bottom: 25px;
  padding-left: 5%;
  padding-right: 5%;
}

.cookie-banner-privacy-and-cookie-policy-link {
  color: navy;
  text-decoration: underline;
  font-weight: bold;
}

.cookie-banner-privacy-and-cookie-policy-link:hover {
  text-shadow: 0 0 10px navy;
  text-decoration: none;
}

.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10%;
  align-items: center;
}

.cookie-banner-buttons button {
  background: navy;
  font-size: large;
  font-weight: bold;
  color: white;
  border: 3px solid black;
  padding-top: 10px;
  padding-bottom: 10px;
  width: 100%;
}

.cookie-banner-buttons button:hover {
  background: black;
  border: 3px solid navy;
}
/* #endregion */

/* #region zyradoc */
.entire-game-box {
    max-width: 100%;
    padding: 20px;
    background-color: rgb(240, 240, 240);
    border-radius: 1%;
}

.back-to-archives-row {
  display: none;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.back-to-archives-btn {
  color: white;
  text-align: center;
  background-color: navy;
  font-size: small;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 5%;
  width: fit-content;
  border: none;
}

.back-to-archives-btn:hover {
  background-color: black;
  border: 1px solid navy;
}

.case-meta-header {
  text-align: center;
  font-size: small;
  color: gray;
  font-weight: normal;
  margin-bottom: 0px;
  margin-top: 0px;
}

.case-header-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr; 
  align-items: center;
  margin-bottom: 20px;
  margin-left: -20px;
  margin-right: -20px;
}

.case-header-nav h1 {
  text-align: center;
  font-size: medium;
  font-weight: bold;
}

.case-header-arrow-prev, .case-header-arrow-next {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: fit-content;
  border: none;
  min-width: 40px;
  height: 50px;
  background-color: navy;
  color: white;
  font-weight: bold;
  font-size: small;
}

.case-header-arrow-prev {
  justify-self: start;
  padding: 5px 5px 5px 15px;
  clip-path: polygon(30% 0%, 30% 22%, 100% 22%, 100% 78%, 30% 78%, 30% 100%, 0% 50%);
}

.case-header-arrow-next {
  justify-self: end;
  padding: 5px 15px 5px 5px;
  clip-path: polygon(0% 22%, 70% 22%, 70% 0%, 100% 50%, 70% 100%, 70% 78%, 0% 78%);
}

.case-header-arrow-prev:hover, .case-header-arrow-next:hover {
  background-color: black;
  border: 1px solid navy;
}

.case-header-arrow-prev.disabled, .case-header-arrow-next.disabled {
  opacity: 0;
  pointer-events: none;
  cursor: default;
}

.case-info p {
  border: 1px solid black;
  border-radius: 5%;
  background-color: lightblue;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
  font-size: medium;
  font-weight: bold;
}

.you-are-incorrect {
  opacity: 0;
}

.you-are-incorrect p {
    border: 2px solid red;
  border-radius: 10%;
  background-color: lightpink;
  padding-top: 5px;
  color: red;
  padding-bottom: 5px;
  text-align: center;
  font-size: medium;
}

.you-are-correct {
  display: none;
}

.you-are-correct p {
    border: 2px solid green;
  border-radius: 10%;
  background-color: lightgreen;
  padding-top: 5px;
  color: green;
  padding-bottom: 5px;
  text-align: center;
  font-size: medium;
}

.youve-already-played-today {
  display: none;
}

.youve-already-played-today p {
    border: 2px solid black;
    border-radius: 5%;
    padding: 20px;
    text-align: center;
    color: black;
    font-weight: bold;
    font-size: medium;
}

.youve-already-played-today-archives-link {
    text-decoration: underline;
    color: navy;
}

.youve-already-played-today-archives-link:hover {
    text-shadow: 0 0 10px navy;
    text-decoration: none;
}

.select-or-skip {
  display: none;
}

.select-or-skip p {
    border: 2px solid red;
  border-radius: 5%;
  background-color: lightpink;
  padding-top: 10px;
  color: red;
  padding-bottom: 10px;
  text-align: center;
  font-size: medium;
}

.skip-button {
  margin-bottom: 5px;
}

#skip-btn {
  border: 1px solid black;
  background-color: gray;
  color: white;
  border-radius: 5%;
  font-size: small;
  height: 40px;
  width: 70px;
  float: right;
}

#skip-btn:hover {
  background-color: black;
}

.guess-and-submit {
  display: none;
  flex-direction: column;
}

.input-and-submit-button {
  display: flex;
  flex-direction: row;
  gap: 5%;
}

.input-and-submit-button input {
    flex: 1;
    border-radius: 5%;
    border: 1px solid gray;
    height: 40px;
    padding-left: 10px;
    padding-right: 5px;
    font-size: small;
}

#submit-btn {
  border: 2px solid black;
  border-radius: 5%;
  background-color: navy;
  color: white;
  font-size: small;
  height: 44px;
  font-weight: bold;
  width: 70px;
}

#submit-btn:hover {
  background-color: black;
  border: 2px solid navy;
}

.open-case-review {
    text-align: center;
    display: none;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

#open-case-review-button {
    font-size: large;
    padding: 10px;
    width: 90%;
    background-color: navy;
    color: white;
    border-radius: 10%;
    border: 3px solid black;
    font-weight: bold;
    animation: pulse 1.5s infinite ease-in-out;
}

#open-case-review-button:hover {
    background-color: black;
    border: 3px solid navy;
    animation: none;
}

#close-case-review-button {
    font-size: large;
    padding: 10px;
    width: 90%;
    background-color: navy;
    color: white;
    border-radius: 10%;
    border: 3px solid black;
    font-weight: bold;
    display: none;
}

#close-case-review-button:hover {
    background-color: black;
    border: 3px solid navy;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.autocomplete-options {
  overflow-y: auto;
  margin-top: 5px;
  margin-bottom: 30px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-left: 1px solid gray;
  border-right: 1px solid gray;
  max-height: 250px;
  display: none;
  font-size: small;
}

.suggestion-item {
  border-bottom: 1px solid gray;
  cursor: pointer;
  padding: 5px;
}

.suggestion-item:hover {
  background: lightblue;
}

.incorrect-list {
    display: none;
    flex-direction: column; 
    gap: 5px;
    margin-top: 10px;
    font-size: small;
}

.incorrect-list .incorrect-list-first-one {
    display: none;
    justify-content: space-between;
    align-items: center; 
    border-radius: 5%;
    padding: 0 10px;
}

.incorrect-list .incorrect-list-second-one {
    display: flex;
    justify-content: space-between;
    align-items: center; 
    border-radius: 5%;
    padding: 0 10px;
    display: none;
}

.incorrect-list .incorrect-list-third-one {
    display: flex;
    justify-content: space-between;
    align-items: center; 
    border-radius: 5%;
    padding: 0 10px;
    display: none;
}

.incorrect-list div p {
    margin: 0;
}

.incorrect-list .wrong {
  border: 1px solid red;
  background-color: lightpink;
  color: red;
}

.incorrect-list .skipped {
  border: 1px solid gray;
  background-color: lightgray;
  color: gray;
}

.incorrect-list .correct {
  border: 1px solid green;
  background-color: lightgreen;
  color: green;
}

.feedback-modal {
    position: fixed;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-height: 75vh;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: rgb(240, 240, 240);
    z-index: 70;
    padding: 0 20px 5%;
    box-sizing: border-box;
    border: 3px solid black;
    border-radius: 5px;
    pointer-events: auto;
    font-size: medium;
}

.modal-backdrop {
  display: none; 
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5); 
  z-index: 68; 
  pointer-events: all;
  touch-action: none;
}

.close-button-for-feedback-modal {
    width: 100%;
    text-align: right;
}

#close-feedback-modal-button {
  font-size: 50px;
  border: none;
  font-weight: bolder;
  transition: text-shadow 0.3s ease-in-out, color 0.3s ease-in-out;
}

#close-feedback-modal-button:hover {
  text-shadow: 0 0 15px black;
}

.correct-or-incorrect-feedback {
  width: 100%;
  font-weight: bold;
  color: black;
    font-size: medium;
}

.you-are-correct-feedback {
    border: 2px solid green;
    border-radius: 5%;
    background-color: lightgreen;
    padding: 20px 10px;
    display: none;
}

.you-are-correct-feedback span {
    font-weight: bolder;
    font-size: xx-large;
    color: green;
}

.you-are-incorrect-feedback {
    border: 2px solid red;
    border-radius: 5%;
    background-color: lightpink;
    padding: 20px 10px;
    display: none;
}

.you-are-incorrect-feedback span {
    font-weight: bolder;
    font-size: xx-large;
    color: red;
}

.fifty-percentile {
  font-weight: bold;
  text-align: center;
}

.you-were-top-fifty {
  display: none;
}

.you-were-not-top-fifty {
  display: none;
}

.fifty-percentile-archives-link {
  text-decoration: underline;
  color: navy;
}

.fifty-percentile-archives-link:hover {
  text-shadow: 0 0 10px black;
    text-decoration: none;
}

.case-review {
  display: none;
  animation: slideInRight 0.1s ease-out forwards;
  border: 2px solid black;
  padding-left: 2.5%;
  padding-right: 2.5%;
  padding-bottom: 40px;
  border-radius: 10px;
  font-size: medium;
}

@keyframes slideInRight {
  0% {
    transform: translateX(100px); 
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.case-review h2 {
  text-align: center;
  font-size: large;
}

#case-review-continue-reading-btn {
  display: block;
  margin: 0 auto;
  width: 90%;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: lightgray;
  color: black;
  font-size: medium;
  font-weight: bold;
  border: 1px solid black;
  border-radius: 50px;
  text-align: center;
  margin-top: -5px;
}

#case-review-continue-reading-btn:hover {
  border: 2px solid gray;
  color: white;
  background-color: black;
}

.share-this-zyradoc {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 5%;
  margin-top: 30px;
  margin-bottom: 20px;
  align-items: center;
}

.share-button {
  border-radius: 10%;
  border: 3px solid black;
  color: white;
  background: navy;
  font-size: medium;
  font-weight: bold;
  padding: 10px 30px;
  animation: pulse 1.5s infinite ease-in-out;
}

.copied {
    transition: opacity 0.3s ease;
    opacity: 0;
}

.copied.show {
    opacity: 1;
}

.share-button:hover {
  border: 3px solid navy;
  background: black;
  animation: none;
}

.case-info {
  animation: slideInLeft 0.1s ease-out forwards;
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-100px); 
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/* #endregion */

/* #region legal-pages */
.legal-pages {
  background-color: rgb(240, 240, 240);
  padding: 10px 20px 5%;
  border-radius: 1%;
}

.legal-pages h1 {
  text-align: center;
  font-size: x-large;
}

.legal-pages h2 {
  font-size: larger;
}

.legal-pages h3 {
  font-size: large;
}

.legal-pages h3 {
  text-indent: 10%;
  text-decoration: underline;
}

.legal-pages-contact-support-email {
  color: navy;
  font-weight: bold;
  text-decoration: underline;
}

.legal-pages-contact-support-email:hover {
  text-shadow: 0 0 10px navy;
    text-decoration: none;
}

#privacy-and-cookie-policy {
  scroll-margin-top: 110px;
}

.legal-pages-hr {
    margin-top: 30px;
    height: 1px;
    background-color: black;
}

.cookie-preference-reset-btn {
    background-color: navy;
    color: white;
    border: 3px solid black;
    font-size: large;
    text-align: center;
    padding: 10px 20px;
    border-radius: 10%;
    font-weight: bold;
    animation: small-pulse 1s infinite ease-in-out;
}

.cookie-preference-reset-btn:hover {
    background-color: black;
    border: 3px solid navy;
    animation: none;
}

@keyframes small-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.025);
    }
    100% {
        transform: scale(1);
    }
}

.about-us-bio {
  background-color: rgb(240, 240, 240);
  padding: 10px 20px 5%;
  border-radius: 1%;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-us-bio .bio-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 20px;
}

.bio-title .bio-title-name {
  font-size: xx-large;
  margin-top: 15px;
}

.bio-title .bio-title-role {
  margin-top: -25px;
}

.about-us-bio .bio-title img {
  border-radius: 50%;
  border: 4px solid black;
}

.about-us-bio .bio-description {
  margin-top: -15px;
}

.bio-description .bio-description-name {
  display: none;
}

.bio-description .bio-description-role {
  display: none;
}
/* #endregion */

/* #region login-modal */
.login-modal {
  position: fixed;
  top: calc(50% + 35px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-height: 75vh;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: rgb(240, 240, 240);
  z-index: 80;
  padding-top: 0;
  padding-bottom: 40px;
  padding-left: 5%;
  padding-right: 5%;
  box-sizing: border-box;
  border: 3px solid black;
  border-radius: 5px;
  pointer-events: auto;
  display: none;
}

#login-modal-overlay {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5); 
  z-index: 78; 
  pointer-events: all;
  touch-action: none;
}

.login-modal-close {
    width: 100%;
    text-align: right;
}

#login-modal-close-btn {
  font-size: 55px;
  border: none;
  font-weight: bolder;
  margin-right: -5px;
  margin-top: -5px;
  transition: text-shadow 0.3s ease-in-out, color 0.3s ease-in-out;
}

#login-modal-close-btn:hover {
  text-shadow: 0 0 15px black;
}

.login-modal-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: -20px;
}

.login-modal-logo img {
  border-radius: 50%;
  border: 2px solid black;
}

.login-modal-logo p {
  margin-top: 10px;
  font-weight: bold;
  font-size: larger;
}

.login-modal-sign-in-or-sign-up-switcher {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.login-modal-sign-in-or-sign-up-switcher button {
  font-size: x-large;
  width: 100%;
  border: none;
  font-weight: bold;
}

.login-modal-sign-in-or-sign-up-switcher #open-login-modal-sign-in-btn {
  border-bottom: 6px solid navy;
  padding-bottom: 5px;
  border-right: 6px solid navy;
}

.login-modal-sign-in-or-sign-up-switcher #open-login-modal-sign-up-btn {
  padding-bottom: 5px;
}

.login-modal-sign-in {
  display: flex;
}

.login-modal-sign-up {
  display: none;
}

.login-modal-sign-in, .login-modal-sign-up {
  flex-direction: column;
  font-weight: bold;
  font-size: medium;
}

#login-modal-google-sign-in-btn, #login-modal-google-sign-up-btn {
  display: flex;
  align-items: center;
  gap: 2.5%;
  justify-content: center;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: large;
  height: 50px;
  border: 2px solid gray;
  border-radius: 5%;
  font-weight: normal;
}

#login-modal-google-sign-in-btn:hover, #login-modal-google-sign-up-btn:hover {
  border: 2px solid black;
  background-color: lightgray;
}

.login-modal-sign-in-actual-fields-divider, .login-modal-sign-up-actual-fields-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: larger;
  color: gray;
}

.login-modal-sign-in-actual-fields-divider::before, .login-modal-sign-in-actual-fields-divider::after, .login-modal-sign-up-actual-fields-divider::before, .login-modal-sign-up-actual-fields-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid lightgray;
}

.login-modal-sign-in-actual-fields-divider span, .login-modal-sign-up-actual-fields-divider span {
  padding: 0 10px;
}

.login-modal-sign-in-forgot-your-password {
  display: none;
  flex-direction: column;
  margin-top: -5px;
}

.login-modal-sign-in-forgot-your-password-enter-your-email-text {
  font-weight: normal;
  font-size: large;
  margin-top: -10px;
}

.login-modal-sign-in-forgot-your-password-email-address {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: -10px;
}

.login-modal-sign-in-forgot-your-password-email-address input {
  flex-grow: 1;
  margin-top: -5px;
  font-size: large;
  height: 40px;
  border: 2px solid gray;
  border-radius: 5%;
  padding-left: 2.5%;
  padding-right: 2.5%;
}

.login-modal-sign-in-forgot-your-password-account-does-not-exist-text, .login-modal-sign-in-forgot-your-password-invalid-email-address-text, .login-modal-sign-in-forgot-your-password-blank-email-address-text {
  color: red;
  font-weight: normal;
  margin-top: 5px;
  margin-bottom: 0;
  display: none;
}

.login-modal-sign-in-forgot-your-password-weve-sent-an-email-text {
  font-weight: normal;
  font-size: large;
  margin-top: -5px;
  display: none;
}

.login-modal-sign-in-forgot-your-password-send-reset-link-part {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

#login-modal-sign-in-forgot-your-password-send-reset-link-btn {
  color: white;
  background-color: navy;
  font-size: large;
  padding: 10px;
  border: 1px solid black;
  border-radius: 5%;
  width: 90%;
}

#login-modal-sign-in-forgot-your-password-send-reset-link-btn:hover {
  background-color: black;
  border: 1px solid navy;
}

.login-modal-sign-in-forgot-your-password-something-went-wrong-text {
  color: red;
  font-weight: normal;
  margin-top: 20px;
  margin-left: 5%;
  margin-right: 5%;
  display: none;
}

.login-modal-sign-in-forgot-your-password-back-to-log-in-part {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

#login-modal-sign-in-forgot-your-password-back-to-log-in-btn {
  font-size: large;
  border: 1px solid lightgray;
  width: 40%;
  padding: 5px;
  border-radius: 5%;
}

#login-modal-sign-in-forgot-your-password-back-to-log-in-btn:hover {
  border: 1px solid black;
}

.login-modal-sign-in-verification-notice, .login-modal-sign-up-verification-notice {
  display: none;
  flex-direction: column;
  margin-top: -5px;
}

.login-modal-sign-in-verification-notice-account-not-yet-verified-text, .login-modal-sign-up-verification-notice-text{
  font-weight: normal;
  font-size: large;
  margin-top: -10px;
}

.login-modal-sign-in-verification-notice input, .login-modal-sign-up-verification-notice input {
  width: 80%;
  margin-top: -5px;
  height: 35px;
  border: 1px solid black;
  border-radius: 5%;
  font-size: medium;
  padding-left: 2.5%;
  padding-right: 2.5%;
  background-color: lightgray; 
  color: black;
}

.login-modal-sign-up-verification-notice-you-have-to-resign-up {
  font-weight: normal;
  font-size: medium;
  margin-top: 0px;
}

#login-modal-sign-up-verification-notice-resign-up-btn {
  color: blue;
  font-size: medium;
  border: none;
  text-decoration: underline;
}

#login-modal-sign-up-verification-notice-resign-up-btn:hover {
  text-shadow: 0 0 10px navy;
    text-decoration: none;
}

.login-modal-sign-in-verification-notice-resend-link-part, .login-modal-sign-up-verification-notice-resend-link-part {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10%;
  margin-top: 30px;
  margin-bottom: 30px;
}

#login-modal-sign-in-verification-notice-resend-timer-display, #login-modal-sign-up-verification-notice-resend-timer-display {
  font-size: x-large;
  color: blue;
  font-weight: normal;
}

.login-modal-sign-in-verification-notice-resend-link-successfully-text, .login-modal-sign-up-verification-notice-resend-link-successfully-text, .login-modal-sign-up-verification-notice-account-not-yet-verified-text {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: large;
  display: none;
}

.login-modal-sign-in-verification-notice #login-modal-sign-in-verification-notice-resend-link-btn, .login-modal-sign-up-verification-notice #login-modal-sign-up-verification-notice-resend-link-btn {
  color: blue;
  font-size: large;
  padding-top: 5px;
  padding-bottom: 5px;
  width: fit-content;
  border: 1px solid blue;
  border-radius: 5%;
}

.login-modal-sign-in-verification-notice #login-modal-sign-in-verification-notice-resend-link-btn:hover, .login-modal-sign-up-verification-notice #login-modal-sign-up-verification-notice-resend-link-btn:hover {
  text-decoration: underline;
}

.login-modal-sign-up-verification-notice-done-btn-part {
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-modal-sign-in-verification-notice #login-modal-sign-in-verification-notice-done-btn, .login-modal-sign-up-verification-notice #login-modal-sign-up-verification-notice-done-btn {
  color: white;
  background-color: navy;
  font-size: large;
  padding: 10px;
  border: 1px solid black;
  border-radius: 5%;
  width: 90%;
}

.login-modal-sign-in-verification-notice #login-modal-sign-in-verification-notice-done-btn:hover, .login-modal-sign-up-verification-notice #login-modal-sign-up-verification-notice-done-btn:hover {
  background-color: black;
  border: 1px solid navy;
}

.login-modal-sign-in-verification-notice-back-to-log-in-part, .login-modal-sign-up-verification-notice-back-to-log-in-part {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 10px;
}

#login-modal-sign-in-verification-notice-back-to-log-in-btn, #login-modal-sign-up-verification-notice-back-to-log-in-btn {
  font-size: large;
  border: 1px solid lightgray;
  width: 40%;
  padding: 5px;
  border-radius: 5%;
}

#login-modal-sign-in-verification-notice-back-to-log-in-btn:hover, #login-modal-sign-up-verification-notice-back-to-log-in-btn:hover {
  border: 1px solid black;
}

.login-modal-sign-in-email-address, .login-modal-sign-in-password, .login-modal-sign-up-username, .login-modal-sign-up-password, .login-modal-sign-up-email {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-modal-password-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.login-modal-toggle-password-btn {
  position: absolute;
  right: 2%;
  border: none;
  background: none;
  font-size: small;
}

.login-modal-toggle-password-btn:hover {
  text-shadow: 0 0 5px black;
}

.login-modal-sign-in-email-address input, .login-modal-sign-in-password input, .login-modal-sign-up-username input, .login-modal-sign-up-email input, .login-modal-sign-up-password input {
  flex-grow: 1;
  margin-top: -5px;
  font-size: large;
  height: 40px;
  border: 2px solid gray;
  border-radius: 5%;
  padding-left: 2.5%;
  padding-right: 2.5%;
}

.login-modal-sign-in-this-account-was-created-using-google, .login-modal-sign-up-this-account-was-created-using-google {
  color: red;
  font-weight: normal;
  margin-top: 5px;
  margin-bottom: 0;
  display: none;
}

#login-modal-sign-in-this-account-was-created-using-google-sign-in-with-google-btn, #login-modal-sign-in-this-account-was-created-using-google-reset-your-password-btn, #login-modal-sign-up-this-account-was-created-using-google-sign-in-with-google-btn, #login-modal-sign-up-this-account-was-created-using-google-reset-your-password-btn {
  font-size: medium;
  border: none;
  text-decoration: underline;
}

#login-modal-sign-in-this-account-was-created-using-google-sign-in-with-google-btn:hover, #login-modal-sign-in-this-account-was-created-using-google-reset-your-password-btn:hover, #login-modal-sign-up-this-account-was-created-using-google-sign-in-with-google-btn:hover, #login-modal-sign-up-this-account-was-created-using-google-reset-your-password-btn:hover {
  text-shadow: 0 0 10px red;
    text-decoration: none;
}

.login-modal-sign-in-account-does-not-exist-text, .login-modal-sign-in-invalid-email-address-text, .login-modal-sign-in-blank-email-address-text, .login-modal-sign-in-incorrect-password-text, .login-modal-sign-in-invalid-password-text, .login-modal-sign-in-blank-password-text {
  color: red;
  font-weight: normal;
  margin-top: 5px;
  margin-bottom: 0;
  display: none;
}

.login-modal-sign-in-password .password-or-forgot {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

#login-modal-sign-in-forgot-password-btn  {
  font-weight: normal;
  font-size: medium;
  color: blue;
  text-decoration: underline;
  border: none;
}

#login-modal-sign-in-forgot-password-btn:hover {
  text-shadow: 0 0 10px navy;
    text-decoration: none;
}

.login-modal-sign-in-button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
}

.login-modal-sign-up-button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 25px;
}

.login-modal-sign-in-system-and-consol-error-message, .login-modal-sign-up-system-and-consol-error-message, .login-modal-sign-in-verification-notice-account-not-yet-verified-disclaimer-text, .login-modal-sign-up-verification-notice-account-not-yet-verified-disclaimer-text {
  color: red;
  font-weight: normal;
  margin-top: 20px;
  margin-left: 5%;
  margin-right: 5%;
  display: none;
}

.login-modal-sign-in-button button, .login-modal-sign-up-button button {
  background-color: navy;
  border: 2px solid black;
  border-radius: 5%;
  color: white;
  font-size: larger;
  width: 90%;
  padding-top: 10px;
  padding-bottom: 10px;
}

.login-modal-sign-in-button button:hover, .login-modal-sign-up-button button:hover {
  background-color: black;
  border: 2px solid navy;
}

.login-modal-sign-up-username-cannot-be-blank, .login-modal-sign-up-username-is-too-long {
  color: red;
  font-weight: normal;
  margin-top: 5px;
  margin-bottom: 0;
  display: none;
}

.login-modal-sign-up-email-invalid-email, .login-modal-sign-up-email-blank-email, .login-modal-sign-up-email-already-in-use {
  color: red;
  font-weight: normal;
  margin-top: 5px;
  margin-bottom: 0;
  display: none;
}

.login-modal-sign-up-password-requirements {
  font-size: small;
  font-weight: normal;
  margin-top: 5px;
  margin-bottom: 0;
}
/* #endregion */

/* #region logged-in-users-modal */
#logged-in-users-modal-overlay {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0); 
  z-index: 78; 
  pointer-events: all;
  touch-action: none;
}

.logged-in-users-modal {
  position: fixed;
  margin-top: 5px;
  display: none;
  right: 2.5%;
  width: max-content; 
  max-width: 90%;    
  white-space: nowrap; 
  max-height: max-content;
  overflow-y: auto;
  overflow-x: auto;
  background-color: #dde9fc;
  z-index: 80;
  padding: 0 2.5% 5px 2.5%;
  font-size: medium;
  box-sizing: border-box;
  border: 1px solid gray;
  border-radius: 10px;
  pointer-events: auto;
}

.users-modal-username-and-email {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 1px solid gray;
}

.users-modal-username {
  font-weight: bold;
  font-size: large;
}

.users-modal-email {
  font-size: small;
  margin-top: -12.5px;
}

.users-modal-profile-link {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  border-top: 1px solid #dde9fc;
  border-bottom: 1px solid gray;
  border-left: 1px solid #dde9fc;
  border-right: 1px solid #dde9fc;
}

.users-modal-profile-link span {
  font-size: large;
}

.users-modal-profile-link:hover {
  background-color: rgb(2, 131, 141);
  border-top: 1px solid gray;
}

#users-modal-subscribe-btn {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  justify-content: flex-start;
  font-size: medium;
  border-top: 1px solid #dde9fc;
  border-bottom: 1px solid gray;
  border-left: 1px solid #dde9fc;
  border-right: 1px solid #dde9fc;
  width: 100%;
}

#users-modal-subscribe-btn span {
  font-size: large;
  margin-left: -7.5px;
}

#users-modal-subscribe-btn:hover {
  background-color: rgb(2, 131, 141);
  border-top: 1px solid gray;
}

.users-modal-log-out-button {
  display: flex;
  flex-direction: row;
  background: none;
  font-size: medium;
  gap: 15px;
  align-items: center;
  width: 100%;
  border-top: 1px solid #dde9fc;
  border-bottom: 1px solid #dde9fc;
  border-left: 1px solid #dde9fc;
  border-right: 1px solid #dde9fc;
}

.users-modal-log-out-button:hover {
  background-color: rgb(2, 131, 141);
  border-bottom: 1px solid gray;
  border-top: 1px solid gray;
}

.users-modal-log-out-button-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: large;
  font-weight: bold;
}

.users-modal-log-out-button-icon-right-arrow {
  margin-left: -2px;
}
/* #endregion */

/* #region pricing-pages */
.pricing-pages {
  background-color: rgb(240, 240, 240);
  padding: 10px 20px 5%;
  border-radius: 1%;
}

.pricing-pages h1 {
  text-align: center;
  font-size: x-large;
}

.pricing-options {
  display: flex;
  flex-direction: column;
  row-gap: 50px;
  margin-top: 20px;
  margin-bottom: 50px;
}

.pricing-card {
  border: 2px solid black;
  border-radius: 10px;
  padding: 0 5% 30px 5%;
  text-align: center;
}

.pricing-card h2 {
  font-size: larger;
}

.pricing-price {
  font-size: larger;
  font-weight: bold;
  color: navy;
}

.pricing-card ul {
  text-align: left;
}

.pricing-page-archives-link {
  font-weight: bold;
  text-decoration: underline;
}

.pricing-page-archives-link:hover {
  text-shadow: 0 0 5px navy;
  text-decoration: none;
}

.pricing-featured {
  border: 10px solid green;
}

.pricing-off-badge {
  font-size: large;
  margin-top: -3px;
  font-weight: bold;
  background-color: lightgreen;
  width: fit-content;
  padding-right: 10px;
  padding-left: 10px;
  margin: auto;
  border-radius: 10%;
}

.pricing-card button {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  border: 2px solid black;
  border-radius: 10%;
  background: navy;
  color: white;
  font-size: large;
}

.pricing-card button:hover {
  background: black;
  border: 2px solid navy;
}

.pricing-pages-hr {
  height: 1px;
  margin-top: 30px;
  background-color: black;
}

.pricing-pages-contact-support-email {
  color: navy;
  font-weight: bold;
  text-decoration: underline;
}

.pricing-pages-contact-support-email:hover {
  text-shadow: 0 0 10px navy;
    text-decoration: none;
}

.support-our-work-gift-cards {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 15px; 
}

.gift-card {
  border: 2px solid black;
  border-radius: 5px;
  margin: 20px 2.5%;
  font-size: large;
  padding: 20px 5%;
}

.gift-card:hover {
  border: 4px solid navy;
}

.gift-icon {
  font-size: xx-large;
}

.gift-title {
  font-size: x-large;
  font-weight: bold;
  margin-top: 0px;
}

.gift-description {
  margin-top: 0px;
}

.gift-price {
  font-weight: bold;
  font-size: larger;
  margin-top: 0px;
}

.gift-btn-like {
  border: 1px solid black;
  background-color: navy;
  border-radius: 5%;
  margin: 0 auto;
  width: 80%;
  color: white;
  padding: 10px;
  margin-bottom: 10px;
}

.gift-btn-like:hover {
  border: 1px solid navy;
  background-color: black;
}
/* #endregion */

/* #region archives-page */
.archives-page {
  background-color: rgb(240, 240, 240);
  padding: 10px 20px 5%;
  border-radius: 1%;
}

.archives-page h1 {
  text-align: center;
  font-size: x-large;
  margin-bottom: 20px;
}

.archives-page .previous-zyradocs-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 5%;
  row-gap: 25px; 
}

.archives-page .actual-previous-zyradoc-link {
  border: 2px solid gray;
  background-color: lightblue;
  border-radius: 5%;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  padding: 10px 5px;
}

.archives-page .actual-previous-zyradoc-link:hover {
  border: 4px solid navy;
}

.archives-page .actual-previous-zyradoc-link .actual-previous-zyradoc-link-number {
  font-size: large;
  font-weight: bold;
}

.archives-page .actual-previous-zyradoc-link .actual-previous-zyradoc-link-date {
  font-size: small;
}
/* #endregion */

/* #region profiles-page */
.profiles-page {
  background-color: rgb(240, 240, 240);
  padding: 10px 20px 5%;
  border-radius: 1%;
}

.profiles-page h1 {
  text-align: center;
  font-size: x-large;
  margin-bottom: 30px;
}

.profiles-page h2 {
  font-size: larger;
}

.profile-information-table {
  width: 100%;
  border: 2px solid black;
  border-collapse: collapse;
}

.profile-information-table td {
  border: 1px solid black;  
  padding: 15px 2.5%;      
}

.profile-information-table input {
  width: 100%;
  box-sizing: border-box;
  font-size: small;
  height: 40px;
  border: 2px solid gray;
  background-color: lightgray;
  color: black;
  border-radius: 5%;
  padding-left: 2.5%;
  padding-right: 2.5%;
}

.profile-information-table-username-label, .profile-information-table-email-label, .profile-information-table-password-label {
  vertical-align: top;
  text-align: left;
  width: 30%;
  font-size: small;
}

#profile-information-table-username-input {
  background-color: rgb(240, 240, 240);
}

.profile-information-table-username-is-too-long, .profile-information-table-username-cannot-be-blank {
  color: red;
  text-align: right;
  font-size: small;
  margin-top: 0px;
  display: none;
}

.profile-information-table-forgot-or-change-password-btns {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  align-items: flex-end;
}

#profile-information-table-change-password-btn {
 font-size: medium; 
 border: 1px solid gray;
 background-color: lightgray;
 border-radius: 5%;
 margin-bottom: 10px;
 padding: 5px 10px;
}

#profile-information-table-change-password-btn:hover {
 border: 1px solid black;
}

#profile-information-table-forgot-password-btn {
  border: none;
  color: blue;
  text-decoration: underline;
  font-size: medium; 
}

#profile-information-table-forgot-password-btn:hover {
  text-shadow: 0 0 5px navy;
  text-decoration: none;
}

.profile-information-table-change-password-fields {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  margin-top: -15px;
  width: 100%;
}

.profile-information-table-change-password-fields-titles {
  font-weight: bold;
  margin-bottom: 0px;
}

.profile-information-table-change-password-fields input {
  width: 100%;
  font-size: small;
  height: 40px;
  border: 2px solid gray;
  background-color: rgb(240, 240, 240);
  border-radius: 5%;
  padding-left: 2.5%;
  padding-right: 2.5%;
}

.profile-information-table-change-password-fields-current-password-input-toggle-password-btn {
  margin-top: -30.5px;
  font-size: small;
  border: none;
  margin-right: 1%;
}

.profile-information-table-change-password-fields-incorrect-current-password-text, .profile-information-table-change-password-fields-invalid-current-password-text, .profile-information-table-change-password-fields-current-password-blank-text {
  margin-top: 10px;
  margin-bottom: 0px;
  color: red;
  display: none;
  font-size: small;
}

.profile-information-table-change-password-fields-new-password-requirements {
  font-size: xx-small;
  margin-top: 10px;
}

.profile-information-table-save-or-cancel-row {
  border-top: 2px solid black;
  display: none;
}

.profile-information-table-save-or-cancel {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 5%;
}

.profile-information-table-save-or-cancel-error-message {
  color: red;
  display: none;
}

#profile-information-table-save-or-cancel-save {
  background-color: navy;
  border: 1px solid black;
  border-radius: 5%;
  color: white;
  font-size: large;
  padding: 5px 10px;
}

#profile-information-table-save-or-cancel-save:hover {
  background-color: black;
  border: 1px solid navy;
}

#profile-information-table-save-or-cancel-cancel {
  font-size: medium;
  border: none;
}

#profile-information-table-save-or-cancel-cancel:hover {
  text-shadow: 0 0 5px black;
}

.account-information-table {
  width: 100%;
  border: 2px solid black;
  border-collapse: collapse;
}

.account-information-table td {
  border: 1px solid black;  
  padding: 15px 2.5%;      
}

.account-information-table input {
  width: 100%;
  box-sizing: border-box;
  font-size: small;
  height: 40px;
  border: 2px solid gray;
  background-color: lightgray;
  color: black;
  border-radius: 5%;
  padding-left: 2.5%;
  padding-right: 2.5%;
}

.account-information-table-label {
  vertical-align: top;
  text-align: center;
  width: 35%;
  font-size: small;
}

#account-information-table-subscription-tier-upgrade-subscription-btn {
  font-size: small; 
 border: 1px solid black;
 background-color: navy;
 border-radius: 5%;
 color: white;
 padding: 10px;
 margin-top: 20px;
 margin-bottom: 10px;
 width: 100%;
}

#account-information-table-subscription-tier-upgrade-subscription-btn:hover {
 border: 1px solid navy;
 background-color: black;
}

.profiles-page-delete-account-part {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
}

#profiles-page-delete-account-btn {
  background-color: red;
  border: 2px solid black;
  border-radius: 5%;
  color: white;
  font-size: large;
  padding: 5px 10px;
  align-self: flex-end;
}

#profiles-page-delete-account-btn:hover {
  background-color: black;
  border: 2px solid red;
}

.profiles-page-delete-account-confirmation-part {
  display: none;
  flex-direction: column;
  align-items: center;
}

.profiles-page-delete-account-confirmation-part-btns {
  display: flex;
  flex-direction: row;
  gap: 10%;
}

#profiles-page-delete-account-confirmation-delete-btn {
  font-size: medium;
  border: none;
  color: red;
}

#profiles-page-delete-account-confirmation-cancel-btn {
  background-color: lightgray;
  border: 1px solid gray;
  border-radius: 5%;
  color: black;
  font-size: large;
  padding: 5px 10px;
}

#profiles-page-delete-account-confirmation-cancel-btn:hover {
  border: 1px solid black;
}

.profile-page-delete-error-message {
  color: red;
  display: none;
}

.profiles-page-hr {
    margin-top: 30px;
    height: 1px;
    background-color: black;
}

.profiles-page-contact-support-email {
  color: navy;
  font-weight: bold;
  text-decoration: underline;
}

.profiles-page-contact-support-email:hover {
  text-shadow: 0 0 10px navy;
    text-decoration: none;
}
/* #endregion */

@media screen and (min-width: 991px) {
  .profiles-page h1 {
    font-size: xx-large;
  }
  .profiles-page h2 {
    font-size: x-large;
  }
  .profile-information-table-username-label, .profile-information-table-email-label, .profile-information-table-password-label {
    font-size: large;
  }
  .account-information-table-label {
    font-size: large;
  }
  .profile-information-table-change-password-fields-new-password-requirements {
    font-size: x-small;
    margin-top: 10px;
  }
  .profile-information-table-change-password-fields input {
    font-size: medium;
    width: 75%;
  }
  .profile-information-table-username-is-too-long, .profile-information-table-username-cannot-be-blank {
    font-size: large;
  }
  .profile-information-table input, .account-information-table input {
    font-size: large;
  }
  #account-information-table-subscription-tier-upgrade-subscription-btn {
    width: 50%;
    font-size: medium;
  }
  #profiles-page-delete-account-btn {
    font-size: larger;
  }
  .profile-information-table-change-password-fields-incorrect-current-password-text, .profile-information-table-change-password-fields-invalid-current-password-text, .profile-information-table-change-password-fields-current-password-blank-text {
    font-size: large;
  }

  .login-modal {
    width: 40%;
    padding-left: 2.5%;
    padding-right: 2.5%;
    top: calc(50% + 30px);
    max-height: 80vh;
  }
  #login-modal-close-btn {
    margin-right: -15px;
    margin-top: -1px;
  }
  .login-modal-sign-in-forgot-your-password-email-address input {
    font-size: larger;
  }
  .login-modal-sign-in-verification-notice input, .login-modal-sign-up-verification-notice input {
    font-size: large;
  }
  .login-modal-sign-in-email-address input, .login-modal-sign-in-password input, .login-modal-sign-up-username input, .login-modal-sign-up-email input, .login-modal-sign-up-password input {
    font-size: larger;
  }

  .archives-page h1 {
    font-size: xx-large;
  }
  .archives-page .actual-previous-zyradoc-link .actual-previous-zyradoc-link-number {
    font-size: larger;
  }
  
  main {
    width: 50%;
    margin-top: 100px;
    font-size: large;
  }

  .support-our-work-gift-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 5%;
    row-gap: 25px; 
  }
  
  .pricing-pages {
    width: 80vw; 
    position: relative;
    left: 50%;
    margin-left: -40vw; 
    margin-right: -40vw;
    box-sizing: border-box;
    padding-left: 5%;
    padding-right: 5%;
  }
  .pricing-pages h1 {
    font-size: xx-large;
  }
  .pricing-options {
    display: flex;
    flex-direction: row;
    column-gap: 5%;
    margin-top: 50px;
  }
  .pricing-card h2 {
    font-size: x-large;
  }
  .pricing-price {
    font-size: x-large;
  }
  .pricing-card button {
    font-size: larger;
  }

  .logged-in-users-modal {
    padding: 0 1% 5px 1%;
    font-size: large;
  }
  .users-modal-email {
    font-size: medium;
  }
  .users-modal-profile-link span {
    font-size: larger;
  }
  .users-modal-log-out-button {
    font-size: large;
  }
  .users-modal-log-out-button-icon {
    font-size: larger;
  }
  #users-modal-subscribe-btn {
    font-size: large;
  }
  #users-modal-subscribe-btn span {
    font-size: larger;
  }

  #submit-btn {
    height: 49px;
    width: 110px;
    font-size: large;
  }
  .incorrect-list {
    font-size: medium;
  }
  .correct-or-incorrect-feedback {
    font-size: large;
  }
  .feedback-modal {
    width: 60%;
    padding-bottom: 20px;
    font-size: large;
  }
  .case-header-nav h1 {
    font-size: larger;
  }
  .back-to-archives-btn {
    font-size: medium;
  }
  #case-review-continue-reading-btn {
    font-size: large;
  }
  .case-review {
    font-size: large;
  }
  .case-review h2 {
    font-size: larger;
  }
  .share-button {
    font-size: larger;
    padding: 10px 50px;
  }
  .case-header-arrow-prev, .case-header-arrow-next {
    font-size: medium;
  }
  .case-meta-header {
    font-size: medium;
  }
  .case-info p {
    font-size: large;
  }
  .you-are-incorrect p {
    font-size: large;
  }
  .you-are-correct p {
    font-size: large;
  }
  .youve-already-played-today p {
    font-size: large;
  }
  .select-or-skip p {
    font-size: large;
  }
  #skip-btn {
    font-size: large;
    height: 45px;
    width: 110px;
  }
  .input-and-submit-button input {
    height: 45px;
    font-size: medium;
  }
  .autocomplete-options {
    overflow-y: auto;
    margin-top: 5px;
    margin-bottom: 30px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border-left: 1px solid gray;
    border-right: 1px solid gray;
    max-height: 250px;
    display: none;
    font-size: medium;
  }

  header {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .hamburger button {
    font-size: xx-large;
  }
  .header-logo a span {
    font-size: 32px;
  }
  .header-logo a img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
  }

  .hamburger-menu {
    width: 35%;
    font-size: larger;
  }

  footer {
    padding: 30px 15%;
  }
  .footer-legal-pages {
    column-gap: 100px;
  }

  .cookie-banner {
    padding-left: 10%;
    padding-right: 10%;
  }
  .cookie-banner-buttons button {
    width: 400px;
  }

  .legal-pages {
    width: 50vw; 
    position: relative;
    left: 50%;
    margin-left: -25vw; 
    margin-right: -25vw;
    box-sizing: border-box;
    padding-left: 5%;
    padding-right: 5%;
  }
  .legal-pages h1 {
    font-size: xx-large;
  }
  .legal-pages h2 {
    font-size: x-large;
  }
  .legal-pages h3 {
    font-size: larger;
  }
  .cookie-preference-reset-btn {
    font-size: larger;
  }
  .about-us-bio {
    width: 65vw; 
    position: relative;
    left: 50%;
    margin-left: -32.5vw; 
    margin-right: -32.5vw;
    box-sizing: border-box;
    padding-left: 5%;
    padding-right: 5%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5%;
  }
  .about-us-bio .bio-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .bio-title img {
    width: 150px;
    height: 150px;
  }
  .bio-title .bio-title-name {
    display: none;
  }
  .bio-title .bio-title-role {
    display: none;
  }
  .about-us-bio .bio-description {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .bio-description .bio-description-name {
    font-size: x-large;
    font-weight: bold;
    display: block;
  }
  .bio-description .bio-description-role {
    margin-top: -25px;
    font-weight: bold;
    display: block;
  }
  .bio-description .bio-description-message {
    margin-top: -5px;
  }
}