@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap");
* {
  color: white;
  font-family: Quicksand, Arial, Helvetica, sans-serif;
  line-height: 1.5em;
  box-sizing: border-box;
}

button {
  color: initial;
  padding: 5px;
  border-radius: 0px;
  margin: 3px;
  cursor: pointer;
  border-radius: 0px;
  font-weight: 500;
  color-scheme: light;
}

fieldset {
  border: 2px ridge #595959;
}

#signInButton {
  display: initial;
}
#signOutButton {
  display: none;
}
.auth #signInButton {
  display: none;
}
.auth #signOutButton {
  display: initial;
}

.squishy-button {
  display: inline-block;
  background-color: var(--primary-colour, #cc4242);
  padding-inline: 5px;
}

.squishy-button:hover {
  background-color: var(--primary-colour-accent, #eb5454);
}

.bold {
  font-weight: bold;
}

body {
  background-color: #242526;
}

.hidden {
  display: none;
  opacity: 0;
  height: 0;
  width: 0;
}

h1,
h2,
p {
  margin: 0px;
}

h2 > span {
  font-family: monospace;
}

.projectholder {
  margin-top: 45px;
  border: 5px solid rgba(0, 0, 0, 0.2);
  box-sizing: content-box;
  display: grid;
  gap: 1em;
  grid-template-columns: repeat(auto-fit, 280px);
  justify-content: center;
  margin-inline: auto;
  max-width: var(--double-page-width);
  padding-inline: 1em;
}

.projectitem {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 15px;
  height: 100%;
}

.project-hidden {
  opacity: 0.7;
}

.project-hidden:hover,
a:focus .project-hidden {
  opacity: 1;
}

.project-hidden::before {
  content: "This project is hidden";
  display: block;
}

a {
  text-decoration: none !important;
}

a:hover .projectitem {
  background-color: rgba(0, 0, 0, 0.7);
}

a.link {
  text-decoration: underline !important;
}

a.link:hover {
  opacity: 0.6;
}

.projectitem img {
  width: 60px;
  height: 60px;
  image-rendering: pixelated;
}

.projectitem .banner-img {
  display: inline-block;
  height: 60px;
  width: auto;
  aspect-ratio: 16/9;
  -o-object-fit: contain;
  object-fit: contain;
  margin-left: 5px;
}

.projectitem p {
  font-size: 18px;
  opacity: 0.8;
}

span.meta {
  padding: 5px;
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
span.meta p {
  opacity: 1;
  font-size: 14px;
}

.project-form {
  margin-top: 25px;
  position: relative;
}

.project-form label {
  position: relative;
  display: block;
  margin-top: 10px;
  font-size: 16px;
}

.project-form label::after {
  content: " [?]";
  opacity: 0.6;
}

textarea,
select,
option {
  color: white;
  background-color: #343739;
  border: #5b5d60 solid 2px;
  mix-blend-mode: lighten;
}

.error {
  outline: 1px solid #cc4242;
  box-shadow: 0px 0px 6px 2px #cc4242;
}

span.error {
  color: #ff2525;
  font-size: 18px;
  font-weight: bold;
  outline: none;
  border-radius: 3px;
  box-shadow: 0px 0px 6px -1px #ff2525;
}
span.error::after {
  content: " ";
}

.small-area {
  width: 750px;
  max-width: 95%;
  height: 24px;
  resize: vertical;
}

.medium-area {
  width: 350px;
  height: 50px;
  resize: all;
}

.large-area {
  width: 550px;
  height: 100px;
  resize: all;
} /*# sourceMappingURL=style.css.map */
