@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Belanosima:wght@400;600;700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

html {
  width: 100vw !important;
  scrollbar-width: none;
  box-sizing: border-box;
}
body {
  margin: 0;
  overflow-x: hidden;
  background-image: url(/Assets/Images/cloudnutBGpattern.png);
  background-size: 250px;
  animation: diagonalPan 25s linear infinite;
  margin: 0;
  font-family: Lato
}
#donutbg {
  background-image: url(/Assets/Images/cloudnutBGpattern.png);
  background-size: 250px;
  animation: diagonalPan 25s linear infinite;
  margin: 0;
}
#donutbgsmall {
  background-image: url(/Assets/Images/cloudnutBGpattern.png);
  background-size: 150px;
  animation: diagonalPan 25s linear infinite;
  margin: 0;
}

@keyframes diagonalPan {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 500px 500px;
  }
}

#hero {
  font-family: belanosima;
  color: var(--hero-text);
  text-align: center;
  font-size: 5rem;
  text-shadow: 0 0 40px #000000;
  padding-top: 15vh;
  height: 110vh !important;
}

#hero > h1 {
  margin: 0;
  padding-top: 7rem;
  animation: slideInLeft 1s forwards;
  opacity: 0;
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

#triCard {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding-bottom: 30rem;
  animation: slideInRight 1s forwards;
}

#triCard .scrollbutton {
  width: 25rem;
  height: 7rem;
  border: 6px solid var(--bg-200);
  border-radius: 1rem;
  text-align: center;
  background-color: var(--bg-00-lowpac);
  backdrop-filter: blur(5px) brightness(150%);
  box-shadow: 0 0 20px #00000080, inset 0 0 20px rgba(0, 0, 0, 0.5);
  font-family: Lato;
  color: var(--text-100);
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}

#triCard .scrollbutton:hover {
  cursor: pointer;
  background-color: var(--bg-00-lowpac);
  backdrop-filter: blur(5px) brightness(300%);
  box-shadow: 0 0 20px #00000080, inset 0 0 20px rgba(0, 0, 0, 0.5);
  transform: scale(1.05);
  transition: all 0.05s ease-in-out;
}

#featured {
  margin: 0;
  gap: 1rem;
  background-color: var(--bg-200);
  height: fit-content;
  box-shadow: 0 0 20px #00000080;
  padding: 2rem;
}

#featured > h1 {
  font-family: Lato;
  color: var(--hero-text);
  text-align: center;
  font-size: 3rem;
  width: 100vw;
  text-align: center;
  letter-spacing: 1rem;
  margin: 0;
  margin-bottom: 1rem;
  padding: 1rem;
}

a {
  color: var(--link-text);
}

#featuredbox {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.featureditem {
  display: flex;
  flex-direction: column;
  width: 25vw;
  height: 25vw;
}

.featureditem > h1 {
  font-family: Lato;
  text-align: center;
  font-size: 2rem;
  text-align: center;
  letter-spacing: 0px;
  margin-top: 0px;
  color: var(--hero-text);
}

.latestblog {
  width: 100%;
  height: 30rem;
  border-radius: 1rem;
  background-image: url(/Assets/Images/cloudnutBGpattern.png);
  background-size: 250px;
  animation: diagonalPan 25s linear infinite;
  margin: 0;
  overflow-y: scroll;
  font-family: Lato;
  text-align: center;
  color: var(--text-100);
  box-shadow: inset 0 0 20px #000000c5;
  scroll-behavior: smooth;
}

.latestblog h1 {
  font-family: Lato;
  text-align: center;
  font-size: 2rem;
  text-align: center;
  letter-spacing: 0px;
  margin-top: 0px;
  color: var(--hero-text);
  margin: 0;
  padding: 0;
  padding-top: 1rem;
}

.latestblog::-webkit-scrollbar {
  display: none;
}

.latestblog > * {
  margin: 2rem;
}

#footer {
  text-align: center;
  font-family: Lato;
  font-size: 1.5rem;
  color: var(--text-100);
  background-color: #0000009a;
  display: flex;
  flex-direction: column;
}

.socialbuttons > * {
  padding: 20px;
  font-size: 30px;
  width: 30px;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
  text-decoration: none !important;
  color: var(--text-100);
}

.kofi {
  content: url(/Assets/svg/kofi.svg);
}

#MainButton {
  width: 20rem;
  height: 4rem !important;
  margin: auto;
  background-color: var(--bg-100);
  border: none;
  font-family: "Lato";
  font-size: 3rem;
  color: white;
  border-radius: 1rem;
  border: 6px solid var(--bg-300);
  text-align: center;
  transition: all 0.3s ease-in-out;
  text-decoration: none !important;
  padding: .5rem;
}

#MainButton:hover {
  cursor: pointer;
  background-color: var(--bg-300);
  border: 6px solid var(--bg-100);
  color: var(--text-100);
  transition: all 0.1s ease-in-out;
  transform: scale(1.05);
  text-decoration: none !important;
}

.embedForm {
  background-color: var(--bg-400) !important;
  height: 17rem;
}
.parallax {
  position: relative;
  overflow: hidden;
  height: 110vh;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/Assets/Images/cloudnutBGpattern.png");
  background-size: repeat;
  background-position: center;
  height: 300%;
  translate: 0 -50%;
  z-index: -1;
}

.normal {
  padding: 100px 20px;
  background: #f4f4f4;
}

.content {
  text-align: center;
  padding: 50px;
  color: white;
}

.parallax .content {
  background: rgba(0, 0, 0, 0.5);
}

#blank {
  height: 100vh;
  width: 100vw;
  background-color: var(--bg-00);
  box-shadow: 0 0 20px #00000080;
}

.currentprojectstitle {
  color: var(--hero-text);
  text-align: center;
  font-size: 3rem;
  font-family: belanosima;
}

.currentprojectbox {
  height: auto;
  background-color: var(--bg-00-lowpac);
  border-radius: 2rem;
  border: 6px solid var(--bg-300);
  box-shadow: inset 0 0 20px #00000080;
  margin-left: 3rem;
  margin-right: 3rem;
  display: flex;
}

.currentprojects {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  grid-gap: 1rem;
  display: grid;
  flex-grow: 1;
  margin: 2rem;
}

.currentprojectitem {
  background-color: #000000;
  border-radius: 1rem;
  border: 6px solid var(--bg-300);
  background-color: var(--bg-00-lowpac);
  box-shadow: inset 0 0 20px #00000080;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.currentprojectitem #MainButton {
  margin-top: auto !important;
  margin-bottom: 0;
}
.anchor {
  position: fixed;
}

.projects {
  padding-top: 1rem;
  padding-bottom: 5rem;
}
.about {
  height: auto;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 3fr;
  justify-content: center;
  align-items: center;
  margin-bottom: 5rem;
}
.headshotcontainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 3rem;
}

.headshotsocialpanel {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background-color: #00000056;
  width: 21rem;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  border: 6px solid var(--bg-300);
  border-top: 0;
}

.headshotsocialpanel a {
  margin: 1rem;
  color: var(--text-100);
  font-size: 2rem;
  text-decoration: none !important;
}

.headshotsocialpanel a:hover {
  color: var(--hero-text);
  transform: scale(1.1);
}

.headshot {
  border-radius: 2rem;
  border: 12px solid var(--bg-300);
  box-shadow: 0 0 20px #00000080;
}

.abouttext {
  height: auto;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 2rem;
  border: 6px solid var(--bg-300);
  background-color: var(--bg-00-lowpac);
  box-shadow: inset 0 0 20px #00000080;
}

.abouttext h1 {
  text-align: center;
  font-size: 5rem;
  font-family: belanosima;
  color: var(--hero-text);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.abouttext p {
  text-align: center;
  font-size: 3rem;
  font-family: Lato;
  color: var(--text-100);
  margin: 2rem;
}

.abouttext h2 {
  text-align: center;
  color: var(--hero-text);
  font-family: Lato;
  font-size: 5rem;
  margin-left: 2rem;
  margin-right: 2rem;
  margin-top: 0;
  margin-bottom: 2rem;
}

.blogheader {
  font-size: 7rem;
  font-family: belanosima;
  color: var(--hero-text);
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.blogpost {
  width: 60vw;
  min-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: 2rem;
  backdrop-filter: blur(5px);
  border: 6px solid var(--bg-300);
  background-color: var(--bg-00-lowpac);
  box-shadow: inset 0 0 20px #00000080;
  padding: 1rem;
  padding-left: 3rem;
  padding-right: 3rem;
  text-align: center;
}

.blogpost * {
  font-size: 1rem;
  font-family: Lato;
  color: var(--hero-text);
  margin-top: 0rem;
  margin-bottom: 1rem;
}

.blogpost h1 {
  font-size: 4rem;
  font-family: belanosima;
  color: var(--hero-text);
  margin-top: 0rem;
  margin-bottom: 1rem;
}

.latestheader {
  font-size: 3rem;
  font-family: belanosima;
  color: var(--hero-text);
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.leftstickyblogs {
  position: fixed;
  left: 0;
  height: 40vh;
  width: 15vw;
  min-width: 10rem;
  border-top-right-radius: 3rem;
  border-bottom-right-radius: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #00000052;
  backdrop-filter: blur(5px);
  overflow-y: scroll;
  padding: 0.5rem;
}

.leftstickyblogs::-webkit-scrollbar {
  display: none;
}

.blognav {
  padding-left: 0;
  padding-top: 3rem;
  height: 40vh;
}

.blognav li {
  font-size: 1rem;
  font-family: belanosima;
  color: var(--hero-text);
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 1rem;
  list-style: none;
  cursor: pointer;
  background-color: #00000059;
  margin: 0.5rem;
  padding: 1rem;
  border-radius: 1rem;
  transition: all 0.1s ease-in-out;
}

.blognav li h2 {
  font-size: 0.6rem;
  font-family: Lato;
  color: var(--secondary-text);
  text-align: center;
  margin: 0;
}

.blognav li:hover {
  font-size: 1rem;
  font-family: belanosima;
  color: var(--hero-text);
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 1rem;
  list-style: none;
  cursor: pointer;
  background-color: #4e223a59;
  margin: 0.5rem;
  padding: 1rem;
  border-radius: 1rem;
  transition: all 0.1s ease-in-out;
  transition: transform 0.05s ease-in-out;
  transform: translate(0.5rem, 0);
}

.blognav li:active {
  transform: scale(0.95);
}

.currentprojectitem h1 {
  margin: 0;
  margin-top: 2rem;
  font-size: 4rem;
}

.currentprojectitem h2 {
  font-family: Lato;
  color: var(--text-100);
  margin: 1rem;
  font-size: 1.5rem;
  padding: 1rem;
}

.overlaysModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000080;
  backdrop-filter: blur(5px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.modal-content {
  background-color: var(--bg-00-lowpac);
  backdrop-filter: blur(5px);
  border: 6px solid var(--bg-300);
  border-radius: 2rem;
  padding: 1rem;
  width: 80vw;
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.modal-content h1 {
  font-size: 4rem;
  font-family: belanosima;
  color: var(--hero-text);
  margin-top: 0rem;
  margin-bottom: 1rem;
}
.modal-content h2 {
  font-size: 2rem;
  font-family: belanosima;
  color: var(--hero-text);
  margin-top: 0rem;
  margin-bottom: 1rem;
}

.overlaytable {
  display: table;
  width: 100%;
  border-spacing: 1rem;
  background-color: var(--bg-00-lowpac);
  border: 6px solid var(--bg-300);
  border-radius: 1rem;
}

.overlaytable * {
  text-align: center;
  color: var(--text-100);
  font-family: Lato;
}

.overlaytable th {
  font-size: 2rem;
  font-family: belanosima;
  color: var(--hero-text);
  margin-top: 0rem;
  margin-bottom: 1rem;
  width: 33%;
}

.close {
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-size: 3rem;
  cursor: pointer;
  color: var(--text-100);
}



#featured h1 {
  width: 100%;
  padding: 0;
}

.docsheader {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(
    0deg,
    #ffffff00 0%,
    #00000080 50%,
    #000000a1 100%
  );
  color: var(--hero-text);
  font-family: belanosima;
  width: 100vw;
}

.docscontent {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1000px;
  color: var(--text-100);
  background-color: #00000080;
  backdrop-filter: blur(5px);
  border: 6px solid var(--bg-300);
  border-radius: 2rem;
  padding: 2rem;
  font-family: Lato;
  margin-bottom: 2rem;
}

.docstitle {
  font-size: 3rem;
  font-family: Lato;
  color: var(--hero-text);
  margin-top: 0rem;
  margin-bottom: 0rem;
  font-weight: bold;
}

/* Dashed border */
hr.dashed {
  border: none;
  border-top: 3px dashed #bbbbbb6b;
}

/* Dotted border */
hr.dotted {
  border: none;
  border-top: 3px dotted #bbbbbb6b;
}

/* Solid border */
hr.solid {
  border: none;
  border-top: 3px solid #bbbbbb6b;
}

/* Rounded border */
hr.rounded {
  border: none;
  border-top: 8px solid #bbbbbb6b;
  border-radius: 5px;
}

.maintext {
  color: var(--text-100);
  font-family: Lato;
  font-size: 1.5rem;
  margin: 1rem;
}

.subtitle {
  color: var(--secondary-text);
  font-family: Lato;
  font-size: 1.5rem;
  margin: 0rem;
}

.docscontent h2 {
  font-size: 2rem;
  font-family: belanosima;
  color: var(--hero-text);
  margin-top: 0rem;
  margin-bottom: 1rem;
}

.dochighlight {
  margin-top: 1rem;
  margin-bottom: 1rem;
  background-color: #29292986;
  word-wrap: break-word;
  padding: 0.1rem;
  border-radius: 0.3rem;
  color: var(--link-text);
}
.docscontent h3 {
  font-size: 1.5rem;
  color: var(--hero-text);
  margin-top: 0rem;
  margin-bottom: 0rem;
}
.docscontent h4 {
  font-size: 1rem;
  color: var(--hero-text);
  margin-top: 0rem;
  margin-bottom: 1rem;
  line-height: 130%;
  margin-left: 1rem;
}

.getOverlayButtons button {
  margin: 0.25rem;
  margin-left: 0;
  font-size: 1.5rem;
  padding: 0.5rem;
  border-radius: 0.5rem;
  font-family: Belanosima;
  font-weight: bold;
  color: var(--bg-100);
  border: none;
}

.getOverlayButtons button:hover {
  transform: scale(1.05);
  transition: all 0.1s ease-in-out;
  cursor: pointer;
}

.getOverlayButtons button:active {
  transform: scale(0.95);
  transition: all 0.05s ease-in-out;
}

.offlineButton {
  background-color: var(--text-100);
}

.onlineButton {
  background-color: var(--link-text);
}

.streamerBotImportButton {
  background: linear-gradient(
    to right,
    rgb(165, 92, 238),
    rgb(0, 219, 255)
  );
  color: rgb(34, 34, 34) !important;
}

.transition {
  color: var(--hero-text);
  font-family: lato;
  font-size: 5vw;
  margin: 0;
  font-weight: bold;
  position: absolute;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  margin-top: 50vh;
}
.transition span {
  display: inline-block;
  animation: jump 0.8s ease-in-out 0s infinite alternate;
}

.docscontent > p {
  line-break: strict;
}
.transition span:nth-child(3n + 1) {
  animation-delay: -0.1s;
}
.transition span:nth-child(3n + 2) {
  animation-delay: -0.2s;
}
.transition span:nth-child(3n + 3) {
  animation-delay: -0.3s;
}
.transition span:nth-child(3n + 4) {
  animation-delay: -0.4s;
}
.transition span:nth-child(3n + 5) {
  animation-delay: -0.5s;
}
.transition span:nth-child(3n + 6) {
  animation-delay: -0.6s;
}
.transition span:nth-child(3n + 7) {
  animation-delay: -0.7s;
}
.transition span:nth-child(3n + 8) {
  animation-delay: -0.8s;
}
.transition span:nth-child(3n + 9) {
  animation-delay: -0.9s;
}
.transition span:nth-child(3n + 10) {
  animation-delay: -1s;
}
.transition span:nth-child(3n + 11) {
  animation-delay: -1.1s;
}
.transition span:nth-child(3n + 12) {
  animation-delay: -1.2s;
}
.transition span:nth-child(3n + 13) {
  animation-delay: -1.3s;
}
.transition span:nth-child(3n + 14) {
  animation-delay: -1.4s;
}
.transition span:nth-child(3n + 15) {
  animation-delay: -1.5s;
}
.transition span:nth-child(3n + 16) {
  animation-delay: -1.6s;
}
.transition span:nth-child(3n + 17) {
  animation-delay: -1.7s;
}
.transition span:nth-child(3n + 18) {
  animation-delay: -1.8s;
}
.transition span:nth-child(3n + 19) {
  animation-delay: -1.9s;
}
.transition span:nth-child(3n + 20) {
  animation-delay: -2s;
}
.transition span:nth-child(3n + 21) {
  animation-delay: -2.1s;
}
.transition span:nth-child(3n + 22) {
  animation-delay: -2.2s;
}
.transition span:nth-child(3n + 23) {
  animation-delay: -2.3s;
}
.transition span:nth-child(3n + 24) {
  animation-delay: -2.4s;
}
.transition span:nth-child(3n + 25) {
  animation-delay: -2.5s;
}
.transition span:nth-child(3n + 26) {
  animation-delay: -2.6s;
}
.transition span:nth-child(3n + 27) {
  animation-delay: -2.7s;
}
.transition span:nth-child(3n + 28) {
  animation-delay: -2.8s;
}
.transition span:nth-child(3n + 29) {
  animation-delay: -2.9s;
}
.transition span:nth-child(3n + 30) {
  animation-delay: -3s;
}
.transition span:nth-child(3n + 31) {
  animation-delay: -3.1s;
}
.transition span:nth-child(3n + 32) {
  animation-delay: -3.2s;
}
.transition span:nth-child(3n + 33) {
  animation-delay: -3.3s;
}
.transition span:nth-child(3n + 34) {
  animation-delay: -3.4s;
}
.transition span:nth-child(3n + 35) {
  animation-delay: -3.5s;
}
.transition span:nth-child(3n + 36) {
  animation-delay: -3.6s;
}
.transition span:nth-child(3n + 37) {
  animation-delay: -3.7s;
}
.transition span:nth-child(3n + 38) {
  animation-delay: -3.8s;
}
.transition span:nth-child(3n + 39) {
  animation-delay: -3.9s;
}
.transition span:nth-child(3n + 40) {
  animation-delay: -4s;
}

.fourohfour {
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  flex-direction: column;
}

.fourohfour h1 {
  font-size: 3rem;
  font-family: Belanosima;
  color: var(--accent-100);
}

.fourohfour h3 {
  font-size: 1.5rem;
  font-family: Lato;
  color: var(--accent-100);
}

.fourohfour img {
  border: var(--accent-100) solid 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 0.5rem black;
}


@keyframes jump {
  0% {
    transform: translateY(0);
    filter: hue-rotate(0);
  }
  100% {
    transform: translateY(0.15em);
    filter: hue-rotate(360deg);
  }
}

/* Media Queries for Mobile */
@media only screen and (max-width: 1500px) {
  .currentprojects {
    display: flex;
    flex-direction: column;
    margin: 1rem;
  }
  #hero {
    font-size: 3rem;
    height: 100vh;
    padding-top: 0;
    padding-bottom: 0;
  }
  #triCard {
    margin-left: 1rem;
    margin-right: 1rem;
    flex-direction: column;
  }
  #triCard .scrollbutton {
    width: 20rem;
    height: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #triCard .scrollbutton * {
    margin: 0;
  }
  #featuredbox {
    display: flex;
    flex-direction: column;
  }
  .featureditem {
    width: 100%;
    height: auto;
    gap: 0;
  }

  .projects {
    height: auto;
  }
  .currentprojectbox {
    margin: 0;
  }

  .currentprojectitem {
    margin: 0;
    border: 0;
    padding: 0;
    padding: 1rem;
  }

  .currentprojectitem h1 {
    font-size: 3rem;
  }

  .currentprojectitem h2 {
    font-size: 2rem;
  }

  .modal-content {
    width: 90vw;
    height: 95vh;
    padding: 0;
    margin: 0;
  }
  .modal-content h1 {
    font-size: 2rem;
  }
  .modal-content h2 {
    font-size: 1rem;
  }
  .overlaytable {
    width: 85vw;
  }
  .overlaytable tr {
    font-size: 0.7rem;
  }
  .overlaytable th {
    font-size: 1rem;
  }
  .about {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    height: auto;
  }
  .headshot {
    width: 80%;
    margin-left: 1rem;
  }
  .headshotsocialpanel a {
    margin: 0.5rem;
  }
  .headshotsocialpanel {
    border: 6px solid var(--bg-300);
    border-radius: 2rem;
  }
  .abouttext {
    width: 100%;
    padding: 0;
    margin: 3rem;
    height: auto;
    border-radius: 0;
  }
  .abouttext p {
    font-size: 1.5rem;
  }
  .abouttext h1 {
    font-size: 3rem;
  }
  .abouttext h2 {
    font-size: 2rem;
  }
  .headshot {
    display: none;
  }
  .latestblog h1 {
    font-size: 3rem;
    margin: 0;
    padding: 0;
    width: 100%;
  }
  #footer {
    padding-bottom: 3rem;
  }
  .docscontent {
    width: 100%;
    margin: 0;
    border-radius: 0;
    border: 0;
    border-top: 6px solid var(--bg-300);
    border-bottom: 6px solid var(--bg-300);
    max-width: none;
    margin-bottom: 2rem;
    padding-left: 1rem;
  }
  .docscontent ul div h4 {
    font-size: 1.5rem;
    text-wrap: wrap;
    width: 85%;
  }
  .headshotcontainer {
    margin: 0;
  }
}

.title{
  font-family: Belanosima;
  color: var(--hero-text);
  font-size: 3rem;
  margin: 0;
  padding: 0;
  margin-top: 1rem;
  text-align: center;
}

.titlesub {
  font-family: Lato;
  color: var(--secondary-text);
  font-size: 1.5rem;
  margin: 0;
  padding: 0;
  text-align: center;
}


.twitchauth {
  padding: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  font-family: Lato;
  font-size: 1.5rem;
  background-color: #6441a5;
  border-width: 3px;
  border-color: #b9a3e3;
  border-style: solid;
  color: #b9a3e3;
  border-radius: .5rem;
}

.twitchauth:hover{
  background-color: #b9a3e3;
  color: #6441a5;
  cursor: pointer;
  border-color: #6441a5;
  transform: scale(1.1)
}

.header-sendmesomething {
  font-family: Belanosima;
  color: var(--hero-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  padding-left: 1vw;
  padding-right: 1vw;
  text-wrap: nowrap;
  font-weight: bold;
  text-align: center;
  flex-direction: column;
}

.sendmesomething {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.sendmesomething-message-box h1 {
  font-family: Belanosima;
  color: var(--hero-text);
  font-size: 2rem;
  margin: 0;
}

.sendmesomething-message-box {
  padding-top: 1rem;
  padding-bottom: 2rem;
  border-radius: 1rem;
  padding-left: 2rem;
  padding-right: 2rem;
  background-color: var(--bg-100);
  box-shadow: 0 0 20px #00000080;
  text-align: center;
  width: 40rem;
}

.messagesubmission input {
  background-color: var(--bg-300);
  border-radius: 0.5rem;
  border: 0;
  padding: 0.5rem;
  width: 95%;
  height: 2rem;
  font-size: 1rem;
  color: var(--text-100);
  
}

.messagesubmission input::placeholder {
  color: var(--bg-400);
  font-weight: 600;
}

.messagesubmission input:focus {
  outline: none;
  background-color: var(--bg-200);
}

.sendbutton {
  background-color: var(--bg-200);
  border-radius: 0.5rem;
  border: 0;
  padding: 0.5rem;
  width: 100%;
  height: 2rem;
  font-size: 1rem;
  color: var(--bg-400);
  cursor: pointer;
  margin-top: 1rem;
  font-weight: 600;
  transition: all 0.03s ease-in;
}

.sendbutton:hover {
  color: var(--hero-text);
  background-color: var(--accent-100);

}

.sendbutton:active {
  transform: scale(0.95);
  opacity: 90%;
}

.sendbutton:disabled {
  background-color: var(--bg-300) !important;
  color: var(--secondary-text) !important;
  cursor: not-allowed !important;
  transform: scale(1) !important;
  opacity: 100% !important;
}

.drawing-canvas{
  border-radius: 1rem;
  box-shadow:  0 0 20px var(--hero-text);
  outline: var(--bg-400) 4px solid;
}

.tool-controls {
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.undo-button {
    padding: 5px 10px;
    font-size: 14px;
}
.redo-button {
    padding: 5px 10px;
    font-size: 14px;
}

.colorPicker {
  border: none;
}

input[type=color]{
	width: 90px;
	height: 40px;
	border: none;
	background: none;
}
input[type="color"]::-webkit-color-swatch-wrapper {
	padding: 0;
}
input[type="color"]::-webkit-color-swatch {
	border: solid 4px var(--bg-400); /*change color of the swatch border here*/
	border-radius: 1rem;
}

.slider {
  appearance: none;
  -webkit-appearance: none;
  background-color: #00000000;
  width: 15rem;
}

.slider::-webkit-slider-runnable-track{
  appearance: none;
  -webkit-appearance: none;
  background-color: var(--bg-200);
  height: 1rem;
  border: var(--bg-100) 0.3rem solid;
  border-radius: 0.5rem;
  cursor: pointer;
}

.slider::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 1rem; /* REQUIRED */
  height: 1rem; /* REQUIRED */
  background-color: var(--bg-400) !important;
  border-radius: 50%;
  cursor: pointer;
  margin-top: -0.25rem;
}

.undo-button {
  width: 2.5rem;
  height: 2.5rem;
  font-weight: 900;
  font-size: 2rem;
  margin: 0;
  padding: 0;
  line-height: 0;
  cursor: pointer;
  border-radius: 0.5rem;
  outline: none;
  background-color: #00000000;
  color: var(--accent-100);
  border: 0;
}

.undo-button:hover {
  background-color: var(--accent-100);
  color: black
}

.undo-button:active {
  font-size: 1.9rem;
}
.redo-button {
  width: 2.5rem;
  height: 2.5rem;
  font-weight: 900;
  font-size: 2rem;
  margin: 0;
  padding: 0;
  line-height: 0;
  cursor: pointer;
  border-radius: 0.5rem;
  outline: none;
  background-color: #00000000;
  color: var(--accent-100);
  border: 0;
}

.redo-button:hover {
  background-color: var(--accent-100);
  color: black
}

.redo-button:active {
  font-size: 1.9rem;
}

.fill-button {
  width: 2.5rem;
  height: 2.5rem;
  font-weight: 900;
  font-size: 2rem;
  margin: 0;
  padding: 0;
  line-height: 0;
  cursor: pointer;
  border-radius: 0.5rem;
  outline: none;
  background-color: #00000000;
  color: var(--accent-100);
  border: 0;
}

.fill-button:hover {
  background-color: var(--accent-100);
  color: black
}

.fill-button:active {
  font-size: 1.9rem;
}

.home-button {
  font-weight: 900;
  font-size: 1.5rem;
  margin: 0;
  padding: 0;
  line-height: 0;
  cursor: pointer;
  border-radius: 0.5rem;
  outline: none;
  background-color: #00000000;
  color: var(--accent-100);
  border: 0;
  font-family: belanosima;
  position: absolute;
  top: 1rem;
  left: 1rem; 
  transition: all 0.1s ease-in-out;
  padding: 0.5rem
}

.home-button:hover {
  background-color: var(--accent-100);
  color: black;
  transform: scale(1.1);
}

.home-button:active {
  font-size: 1.4rem;
  transform: scale(0.95);
}


.home-button a {
    text-decoration: none;
}

.slider-vert {
  writing-mode: vertical-lr;
  width: 1rem;
  height: 3rem;
}

.slider-vert::-webkit-slider-runnable-track {
  width: 1rem;
  border: 0px black;
}

@media (max-width: 720px) {
  .sendmesomething {
    transform: scale(0.9);
  }
}
@media (max-width: 640px) {
  .sendmesomething {
    transform: scale(0.8);
  }
}
@media (max-width: 570px) {
  .sendmesomething {
    transform: scale(0.7);
  }
  .header-sendmesomething {
    transform: scale(0.7);
  }
}
@media (max-width: 495px) {
  .sendmesomething {
    transform: scale(0.6);
  }
}
@media (max-width: 430px) {
  .sendmesomething {
    transform: scale(0.5);
  }
}

.sendmesomething-signup-form {
  font-family: Belanosima;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sendmesomething-signup-form * {
  font-family: Belanosima;
}

.sendmesomething-signup-form div{
  width: 100%;
}

.sendmesomething-signup-form input {
  margin-bottom: 1rem;
  flex-grow: 1;
  width: 30rem;
  height: 2rem;
  border-radius: 0.5rem;
  border: 0;
  padding: 0.5rem;
  font-size: 1rem;
  color: var(--hero-text);
  background-color: var(--bg-300);
  text-align: center;
}

.sendmesomething-signup-form input::placeholder {
  color: var(--bg-400);
  font-weight: 100;
  text-align: center;
}

.sendmesomething-signup-form button {
  margin-top: 1rem;
  flex-grow: 1;
  width: 100%;
  height: 3rem;
  border-radius: 0.5rem;
  border: 0;
  padding: 0.5rem;
  font-size: 1.5rem;
  color: var(--hero-text);
  background-color: var(--bg-300);
  text-align: center;
  cursor: pointer;
  transition: ease all 0.1s;
}

.sendmesomething-signup-form button:hover {
  background-color: var(--bg-400);
  transform: scale(1.01);
}

.sendmesomething-signup-form button:active {
  background-color: var(--bg-200);
  transform: scale(0.99);
  transition: ease all 0s
}

.game-idea{
  width: 100%;
  text-align: center;
  color: var(--hero-text);
  font-size: 1.5rem;
  font-family: Lato;
}

.game-idea-button {
  width: 15rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
  margin-bottom: 1rem;
  height: 3rem;
  font-family: Belanosima;
  color: var(--hero-text);
  font-size: 1.5rem;
  border-radius: 0.5rem;
  border: 0;
  background-color: var(--bg-300);
  cursor: pointer;
  transition: ease all 0.1s;
}

.game-idea-button:hover {
  background-color: var(--bg-400);
  transform: scale(1.01);
}

.game-idea-button:active {
  background-color: var(--bg-200);
  transform: scale(0.98);
  transition: ease all 0s
}

.notebook-entry a {
  font-size: 1.5rem;
  font-weight: bold;
  margin-left: 1rem;

}

.notebook-entry {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.entries {
  overflow-y: scroll;
  height: 80vh;
  background-color: var(--bg-00-midpac);
  width: 50rem;
  padding: 1rem;
}

.entries::-webkit-scrollbar {
  width: 0.5rem;
}
.entries::-webkit-scrollbar-thumb {
  background-color: var(--bg-300);
  border-radius: 0.5rem;
}
.entries::-webkit-scrollbar-track {
  background-color: #00000000;
}

.entry {
  color: var(--text-100);
  padding: 1rem;
  font-size: 1.3rem;
}
