@charset "UTF-8";
:root {
  --black: #111;
  --dark: #333;
  --light: #bbb;
  --white: #f8f8f8;
  --pure-white: #fff;
  --red: #eb0028;
  --animate-delay: 3s;
}

.dark {
  --black: #f8f8f8;
  --dark: #bbb;
  --light: #999;
  --white: #111;
  --pure-white: #000;
  --red: #eb0028;
}

body {
  background-color: var(--pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  box-sizing: border-box;
  margin: 0;
}

body.noScroll {
  overflow-y: hidden;
}

.bold {
  font-weight: bold;
}

::placeholder {
  color: var(--light);
}

a {
  font-size: 14px;
  text-decoration: none;
  color: var(--black);
  transition: all ease 300ms;
}

a.link {
  font-size: 16px;
}

a.link:hover {
  opacity: 1 !important;
  background-color: var(--black);
  color: var(--white);
}

a:hover {
  opacity: 1 !important;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100000;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  animation: fadeOutNow 1s ease forwards;
  animation-delay: 4s;
}
#loader svg {
  width: 50vw;
  opacity: 1;
  animation: fadeOutNow 0.5s ease forwards 3.5s, zoomIn 1s ease forwards;
}
#loader svg .svg-1 {
  stroke: var(--red);
  stroke-width: 18px;
}

@keyframes zoomIn {
  from {
    width: 10vw;
  }
  to {
    width: 50vw;
  }
}
@keyframes fadeOutNow {
  from {
    opacity: 1;
    z-index: 100000;
  }
  to {
    opacity: 0;
    z-index: -1;
  }
}
#header {
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  top: 0px;
  width: 96vw;
  padding: 2vw;
  z-index: 100;
}
#header a {
  opacity: 0.4;
  margin-left: 0px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
#header a img {
  margin-right: 6px;
  height: 20px;
  width: 20px;
}
#header a:hover {
  margin-left: -8px;
}
#header #share:hover::before {
  content: "💌";
  margin-right: 5px;
}

#mainContainer {
  position: relative;
  width: 100%;
  height: 100vh;
}
#mainContainer .topSection {
  position: relative;
  display: flex;
  justify-content: center;
  height: 100%;
  z-index: 2;
}
#mainContainer .topSection ::selection {
  background-color: var(--red);
  color: var(--white);
}
#mainContainer .topSection .savedContainer {
  height: 100%;
  width: 100%;
  position: absolute;
  left: -100%;
  font-size: 80px;
  font-weight: bold;
  display: flex;
  align-items: center;
  background-color: var(--red);
  transition: left 700ms ease;
  color: var(--white);
  overflow: hidden;
  word-wrap: break-word;
}
#mainContainer .topSection.saved {
  z-index: 1000;
}
#mainContainer .topSection.saved .savedContainer {
  left: 0;
  padding-left: 50px;
  padding-right: 150px;
}
#mainContainer .bottomSection {
  position: relative;
  background-color: var(--red);
  color: var(--white);
  display: flex;
  justify-content: center;
  flex-direction: row;
  height: auto;
  margin-top: -140px;
  padding-top: 200px;
  padding-bottom: 20px;
  z-index: 1;
  height: calc(100% - 90px);
}
#mainContainer .bottomSection ::selection {
  background-color: var(--black);
  color: var(--white);
}
#mainContainer .bottomSection .infoContainer {
  width: 80vw;
  max-width: 1400px;
}
#mainContainer .bottomSection .infoContainer h1 {
  font-size: 56px;
  width: max-content;
  background-color: var(--black);
}
#mainContainer .bottomSection .infoContainer .flex {
  display: flex;
  flex-direction: row;
}
#mainContainer .bottomSection .infoContainer .flex .columns {
  flex: 2;
  column-count: 2;
  column-gap: 40px;
  text-align: justify;
}
#mainContainer .bottomSection .infoContainer .flex img {
  flex: 1;
  object-fit: cover;
  margin-left: 40px;
  border: 2px solid var(--white);
  border-style: dashed;
  padding: 5px;
  width: 30%;
}

#toolbarContainer {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  bottom: 70px;
  width: 88vw;
  max-width: 1400px;
}
#toolbarContainer #toolbar {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 20px 30px 20px 30px;
  background-color: var(--pure-white);
  border-radius: 10px;
  box-shadow: 0px 6px 15px 5px rgba(0, 0, 0, 0.1);
  margin-right: 60px;
}
#toolbarContainer #toolbar img {
  height: 17px;
  margin-right: 8px;
}
#toolbarContainer #toolbar input#eventName {
  font-size: 18px;
  padding: 10px;
  width: 80%;
  font-weight: bold;
  border: 2px solid var(--light);
  border-radius: 5px;
  margin-right: 20px;
  background-image: url("../assets/logo.png");
  background-size: auto 15px;
  background-repeat: no-repeat;
  padding-left: 70px;
  background-position: 12px 47%;
}
#toolbarContainer #toolbar input#eventName:focus {
  outline: none !important;
  border: 2px solid var(--dark);
}
#toolbarContainer #toolbar input#eventName:hover {
  border: 2px solid var(--dark);
}
#toolbarContainer #toolbar #modifiers {
  display: flex;
  flex-direction: row;
}
#toolbarContainer #toolbar input[type="radio"] {
  opacity: 0;
  position: fixed;
  width: 0;
}
#toolbarContainer #toolbar label {
  margin-left: 10px;
  padding: 6px 12px 6px 12px;
  border: 2px solid var(--light);
  color: var(--light);
  border-radius: 5px;
  font-weight: bold;
  transition: border ease 200ms, color ease 200ms;
}
#toolbarContainer #toolbar input[type="radio"]:checked + label {
  background-color: var(--black);
  color: white;
}
#toolbarContainer #toolbar label:hover {
  cursor: pointer;
  color: var(--black);
  border-color: var(--black);
}
#toolbarContainer #toolbar #studioContainer {
  margin-left: 24px;
}
#toolbarContainer #toolbar::before {
  content: "";
  background-image: url("../assets/hand.png");
  position: absolute;
  top: -45px;
  left: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  width: 65px;
  height: 65px;
  animation-name: point;
  animation-duration: 1300ms;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: forwards;
  opacity: 1;
  transition: opacity ease 900ms;
}
#toolbarContainer #toolbar.noHand::before {
  animation: none;
  opacity: 0;
}
#toolbarContainer #saveButton {
  box-shadow: 0px 6px 15px 5px rgba(0, 0, 0, 0.1);
  display: block;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  text-align: center;
  padding: 0px;
  color: var(--light);
  border: 2px solid var(--light);
  background-color: var(--pure-white);
  transition: transform ease 500ms, border ease 500ms, color ease 500ms;
  transform: rotate(10deg);
  outline: none;
}
#toolbarContainer #saveButton:hover {
  cursor: pointer;
  transform: rotate(0deg);
  color: var(--black);
  border-color: var(--black);
}
#toolbarContainer #saveButton:hover::after {
  content: " 🎉";
  opacity: 1;
}

@keyframes point {
  0% {
    top: -50px;
  }
  50% {
    top: -35px;
  }
  100% {
    top: -50px;
  }
}
#canvasContainer {
  position: absolute;
  top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#canvasContainer canvas {
  margin-top: 20px;
}
#canvasContainer #tipBox {
  color: var(--dark);
  margin-top: 20px;
  transition: opacity 0.25s ease-in-out;
  border-top: 1px solid var(--dark);
  padding-top: 6px;
  text-align: center;
}

button {
  border: none;
  border-radius: 5px;
  color: var(--white);
  font-weight: bold;
  font-size: 18px;
  padding: 12px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100vh;
  position: fixed;
  bottom: 0px;
  font-size: 12px;
  z-index: 99;
  color: var(--black);
}
.footer a {
  opacity: 0.5;
}
.footer span,
.footer a {
  margin-right: 12px;
  font-size: 12px;
}

.footer.left {
  transform-origin: 0%;
  transform: rotate(-90deg);
  left: 30px;
}

.footer.center {
  bottom: 20px;
  color: var(--white);
  position: absolute;
}

.footer.right {
  right: 30px;
  transform-origin: 100%;
  transform: rotate(90deg);
}

#mouse {
  position: absolute;
  bottom: 18px;
}
#mouse img {
  height: 45px;
  width: 45px;
  transition: transform 200ms ease, opacity 200ms ease;
  opacity: 0.6;
}
#mouse img:hover {
  transform: translateY(6px);
  opacity: 1;
}

#mobileFallback {
  position: fixed;
  background-color: var(--white);
  display: none;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  width: 100vw;
  height: 100vh;
}
#mobileFallback .logo {
  position: absolute;
  top: 10vh;
  width: 40vw;
}
#mobileFallback .title {
  font-size: 42px;
  font-weight: 700;
  line-height: 110%;
  margin-bottom: 15px;
  width: 89%;
}
#mobileFallback .subtitle {
  font-size: 16px;
  width: 460px;
  margin-bottom: 15px;
}

@media only screen and (max-width: 700px) {
  body {
    overflow: hidden;
    height: 100vh;
  }

  #mobileFallback {
    display: flex !important;
  }
  #mobileFallback .subtitle {
    width: 90%;
  }

  #mainContainer {
    display: none;
  }
}

/*# sourceMappingURL=main.css.map */
