@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
button:hover {
  cursor: pointer;
}
button:hover#moreProjects {
  text-decoration: underline;
}

.project {
  display: flex;
  height: auto;
}
.project__illustration {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: center;
  width: max(200px, 37.17vw);
  height: max(120px, 23.83vw);
  background-color: white;
  margin-right: max(15px, 5.79vw);
  border-radius: 20px;
  transform: skew(5deg) rotateY(30deg);
  transition: transform 0.3s ease-out;
}
.project__illustration img,
.project__illustration video {
  position: absolute;
  left: 5%;
  width: 98%;
  height: 90%;
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
  z-index: 2;
  background-color: black;
  transition: all 0.4s;
}
.project__illustration img.project__gif,
.project__illustration video.project__gif {
  display: none;
  opacity: 0;
}
.project:nth-of-type(even) .project__link {
  background-color: white;
  border-color: #1C1E1F;
  color: #1C1E1F;
}
.project:nth-of-type(even) .project__link::before {
  border-color: #1C1E1F;
}
.project:nth-of-type(even) .project__link > svg {
  stroke: #1C1E1F;
}
.project:nth-of-type(even) .project__link:hover::before {
  background-color: #1C1E1F;
  transform: all 0.2s;
}
.project:nth-of-type(even) .project__illustration {
  order: 2;
  background-color: #1C1E1F;
  margin-left: max(15px, 5.79vw);
  margin-right: 0;
  transform: skew(-5deg) rotateY(-20deg);
}
.project:nth-of-type(even) .project__illustration img,
.project:nth-of-type(even) .project__illustration video {
  left: -3%;
  background-color: white;
}
.project:nth-of-type(even)::before {
  background-color: #1C1E1F;
}
.project:nth-of-type(odd)::before {
  background-color: white;
}
.project:not(.--details) > .project__title {
  display: none;
}
.project__title {
  font-weight: 700;
  font-size: clamp(20px, 2.47vw, 3em);
  margin-top: 0;
  margin-bottom: max(10px, 1.8vw);
}
.project__links {
  position: relative;
  display: flex;
  gap: 1em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 1;
  margin-bottom: max(20px, 3.2vw);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  max-width: 100%;
  flex-wrap: wrap;
}
.project__link {
  position: relative;
  font-size: clamp(10px, 0.92vw, 1.3em);
  padding: 0.15em 0.85em;
  font-weight: 600;
  line-height: 1.2;
  border: 2px solid white;
  border-radius: 1em;
  background-color: #1C1E1F;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.42em;
}
.project__link::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 13%;
  left: -2px;
  border: 2px solid white;
  border-radius: 1em;
  z-index: -1;
}
.project__link > svg {
  fill: none;
  stroke: white;
  stroke-width: 1.5px;
  width: 0.95em;
  height: 0.95em;
}
.project__link:hover::before {
  background-color: white;
  transition: all 0.2s;
}
.project__descr {
  font-size: clamp(14px, 1.25vw, 2em);
  font-weight: 400;
  line-height: 1.22em;
}
.project__details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.project__details__icons {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  max-width: 100%;
  flex-wrap: wrap;
  margin-top: 5%;
  gap: max(10px, 1.3vw);
}
.project__details img {
  fill: red;
  min-width: 30px;
  min-height: 40px;
  margin-right: max(20px, 2.6vw);
  flex-grow: 0.2;
  max-height: 5.53vw;
}
.project:not(.--details):hover .project__illustration {
  transform: skew(0) rotateY(0);
  transition: all 0.4s;
}
.project:not(.--details):hover .project__illustration img,
.project:not(.--details):hover .project__illustration video {
  left: 3%;
  width: 94%;
  transition: all 0.5s;
}
.project:not(.--details):hover .project__illustration img:first-child {
  opacity: 0;
}
.project:not(.--details):hover .project__illustration .project__gif {
  display: inline;
  -webkit-animation: opacity1 0.3s forwards;
          animation: opacity1 0.3s forwards;
}
.project.invisible {
  display: none;
}

@media (max-width: 600px) {
  section {
    text-align: center;
  }
  .project {
    align-items: center;
    flex-direction: column;
  }
  .project:not(.--details) .project__title {
    display: none;
  }
  .project:not(.--details) > .project__title {
    display: block;
    text-align: center;
  }
  .project__links {
    margin-left: auto;
    margin-right: auto;
  }
  .project__illustration {
    margin: 0;
    margin-top: 3vw;
  }
  .project:nth-of-type(even) .project__illustration {
    margin-left: 0;
    order: 0;
  }
  .project__details {
    text-align: center;
  }
  .project__descr, .project__details__descr {
    margin-top: 5%;
  }
}
@-webkit-keyframes opacity1 {
  100% {
    opacity: 1;
  }
}
@keyframes opacity1 {
  100% {
    opacity: 1;
  }
}
.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: max(10px, 3vw);
}
.contact__header {
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-top: max(20px, 3.4vw);
  margin-bottom: max(12px, 1.2vw);
}
.contact__header span {
  font-size: clamp(14px, 1.3vw, 1.8em);
}
.contact__header h3 {
  font-size: clamp(20px, 2.8vw, 2.5em);
}
.contact__form {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(max(200px, 20.75vw), 1fr)) [col-end];
  grid-template-rows: -webkit-min-content -webkit-max-content;
  grid-template-rows: min-content max-content;
  -moz-column-gap: max(120px, 10.3vw);
       column-gap: max(120px, 10.3vw);
  row-gap: max(30px, 3.25vw);
  width: 80%;
  max-width: 100%;
  margin-bottom: max(15px, 1.3vw);
}
.contact__form label {
  display: block;
  padding-left: 10px;
  font-weight: 500;
  text-align: left;
}
.contact__fieldCont {
  display: flex;
  flex-direction: column;
  gap: 13px;
  min-width: 200px;
}
.contact__fieldCont:last-child {
  grid-column: 1/col-end;
}
.contact__input {
  outline: none;
  font-size: clamp(16px, 1.2vw, 2em);
  font-weight: 300;
  padding: 0.45em 1.5em;
  width: 100%;
  border: 2px solid transparent;
  border-radius: 30px;
  background: #1C1E1F;
  box-shadow: 0px min(max(0.4em, 5px), 10px) 0px #FFFFFF;
  border-color: #FFFFFF;
  color: #FFFFFF;
}
.contact__message {
  resize: none;
  padding-top: 0.7em;
}
.contact button.contact__send {
  padding: max(7px, 0.2em) max(15px, 0.1em);
  font-size: clamp(15px, 1.5vw, 1.5em);
  width: max(90px, 12%);
  align-self: flex-end;
  margin-right: 12.5%;
}
.contact button {
  border: 2px solid transparent;
  border-radius: 30px;
  background: #1C1E1F;
  box-shadow: 0px min(max(0.4em, 5px), 10px) 0px #FFFFFF;
  border-color: #FFFFFF;
  color: #FFFFFF;
  text-align: center;
  font-weight: 600;
  padding: max(6px, 0.4em) 2.5em;
  font-size: clamp(14px, 1.3vw, 1.5em);
}

@media (max-width: 600px) {
  .contact__form {
    width: 100%;
  }
  .contact button.contact__send {
    margin: 0 auto;
  }
}
.about > div {
  border: 2px solid transparent;
  border-radius: 30px;
  background: #1C1E1F;
  box-shadow: 0px min(max(0.4em, 5px), 10px) 0px #FFFFFF;
  border-color: #FFFFFF;
  color: #FFFFFF;
  padding: max(22px, 2.2vw) max(20px, 2vw);
  text-align: left;
}
.about__title {
  font-weight: 700;
  font-size: clamp(20px, 2.47vw, 3em);
  margin-top: 0;
}
.about__text {
  display: inline-block;
  font-size: clamp(14px, 1.43vw, 2em);
  font-weight: 400;
  line-height: 1.72em;
  margin-top: 0.7em;
  margin-bottom: 1.15em;
}
.about__techs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 40%));
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin-top: 0;
}
.about__techs li {
  font-size: clamp(12px, 1.2vw, 1.5em);
  margin-bottom: 0.5em;
}

button:hover {
  cursor: pointer;
}
button:hover#moreProjects {
  text-decoration: underline;
}

main.--details {
  font-size: clamp(14px, 1.35vw, 1.8em);
  font-weight: 400;
  line-height: 1.5em;
}

main.--details .project {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: -webkit-min-content -webkit-min-content -webkit-min-content -webkit-min-content;
  grid-template-rows: min-content min-content min-content min-content;
}
@media (max-width: 600px) {
  main.--details .project {
    display: flex;
    flex-direction: column;
  }
}
main.--details .project__title {
  font-size: clamp(25px, 2.6vw, 2.2em);
  font-weight: 600;
}
main.--details .project__subTitle {
  font-size: clamp(14px, 1.35vw, 1.8em);
  font-weight: 400;
  line-height: 1.5em;
  grid-column: 1/span 2;
  grid-row: 2/3;
}
main.--details .project__text {
  font-size: clamp(14px, 1.35vw, 1.8em);
  font-weight: 400;
  line-height: 1.5em;
  padding-top: max(5px, 2vw);
  grid-row: 3/4;
}
main.--details .project__illustration.--details {
  position: relative;
  display: block;
  background-color: transparent;
  width: max(200px, 30vw);
  height: max(120px, 17vw);
  margin-right: 0;
  grid-row: 3/4;
  justify-self: right;
}
main.--details .project__illustration.--details img {
  width: 85%;
  -webkit-animation: illust-float 3s alternate linear infinite;
          animation: illust-float 3s alternate linear infinite;
}
main.--details .project__illustration.--details img:first-child {
  left: -10%;
}
main.--details .project__illustration.--details img:nth-child(2) {
  left: 10%;
  top: 10%;
}
main.--details .project__links {
  justify-self: right;
  align-self: center;
  margin-top: max(20px, 2.73vw);
  margin-right: 2%;
}
main.--details .project:nth-of-type(even) .project__illustration {
  order: 0;
}
main.--details .project:nth-of-type(even) .project__illustration img {
  -webkit-animation: invert-illust-float 3s alternate linear infinite;
          animation: invert-illust-float 3s alternate linear infinite;
}
main.--details .project:nth-of-type(even) .project__illustration img:first-child {
  left: 10%;
}
main.--details .project:nth-of-type(even) .project__illustration img:nth-child(2) {
  left: -10%;
  top: 10%;
}
main.--details h3 {
  margin-top: max(20px, 2.73vw);
}

.bookstore.--details .features__illustration.project__illustration {
  justify-self: center;
}
.bookstore.--details .features__illustration.project__illustration img:not(:nth-child(1)) {
  width: auto;
  height: auto;
}
.bookstore.--details .features__illustration.project__illustration img:nth-child(1) {
  left: 0;
}
.bookstore.--details .features__illustration.project__illustration img:nth-child(2) {
  left: 30%;
  top: 8%;
  height: 85%;
}
.bookstore.--details .features__illustration.project__illustration img:nth-child(3) {
  left: 50%;
  top: 18%;
  height: 75%;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: -webkit-min-content -webkit-min-content -webkit-min-content -webkit-min-content;
  grid-template-rows: min-content min-content min-content min-content;
}
@media (max-width: 600px) {
  .features {
    display: flex;
    flex-direction: column;
  }
}
.features__title {
  font-size: clamp(25px, 2.6vw, 2.2em);
  font-weight: 600;
  grid-column: 2/3;
}
.features__list {
  font-size: clamp(14px, 1.35vw, 1.8em);
  font-weight: 400;
  line-height: 1.5em;
  grid-column: 2/3;
  grid-row: 3/4;
  text-align: left;
}
.features__item {
  padding-bottom: 0.68em;
}

.stack__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  gap: 30%;
  width: 80%;
  padding-left: 2%;
}
.stack__item {
  display: block;
  padding-bottom: 1.3em;
}

.challenges {
  font-weight: 300;
}

@media (max-width: 600px) {
  .--details .project__links,
.--details .project__illustration {
    align-self: center;
    margin-left: 0;
  }
  .stack {
    text-align: center;
  }
  .stack__list {
    justify-content: center;
    margin: 5vw auto;
    padding: 0;
  }
}
@-webkit-keyframes orbit {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
@keyframes orbit {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
@-webkit-keyframes invert {
  0% {
    transform: rotateX(-90deg) rotateY(0) rotateZ(0) skew(5deg);
  }
  100% {
    transform: rotateX(-90deg) rotateY(360deg) rotateZ(0) skew(5deg);
  }
}
@keyframes invert {
  0% {
    transform: rotateX(-90deg) rotateY(0) rotateZ(0) skew(5deg);
  }
  100% {
    transform: rotateX(-90deg) rotateY(360deg) rotateZ(0) skew(5deg);
  }
}
@-webkit-keyframes illust-float {
  0% {
    transform: rotateY(10deg);
  }
  100% {
    transform: rotateY(25deg);
  }
}
@keyframes illust-float {
  0% {
    transform: rotateY(10deg);
  }
  100% {
    transform: rotateY(25deg);
  }
}
@-webkit-keyframes invert-illust-float {
  0% {
    transform: rotateY(-10deg);
  }
  100% {
    transform: rotateY(-25deg);
  }
}
@keyframes invert-illust-float {
  0% {
    transform: rotateY(-10deg);
  }
  100% {
    transform: rotateY(-25deg);
  }
}
* {
  font-family: "Inter", sans-serif;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

body {
  position: relative;
}

main {
  height: 100%;
  scroll-behavior: smooth;
  overflow-y: auto;
  overflow-x: clip;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
main::-webkit-scrollbar {
  width: 0;
  height: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

nav {
  position: -webkit-sticky;
  position: sticky;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #1C1E1F;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding-left: 20%;
  transition: top 0.25s, left 0.25s, width 0.25s;
}
nav .nav__avatar {
  position: absolute;
  width: 3vw;
  min-width: 25px;
  left: 3%;
  border-radius: 15%;
  border: 1px solid white;
}
nav a {
  visibility: visible;
  color: #C5C5C5;
  font-weight: 500;
  margin: max(10px, 1.1vw) 0;
  text-align: center;
  font-size: clamp(14px, 1.43vw, 2em);
  transform: translateX(0);
  transition: visibility 0.5s, transform 0.5s;
}
nav a.nav__link.active {
  color: white;
  position: relative;
}
nav a.nav__link.active::before {
  content: "";
  position: absolute;
  height: 0.25em;
  width: 30%;
  left: 50%;
  top: 110%;
  background-color: white;
  border-radius: 5px;
  transform: translateX(-50%);
}
nav .nav__burger {
  display: none;
  position: absolute;
  right: 5%;
  top: 5%;
  width: max(30px, 5%);
  height: 90%;
  justify-content: right;
}
nav .nav__burger:hover {
  cursor: pointer;
}
nav .nav__burger::before {
  content: "";
  position: absolute;
  width: 75%;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  top: 25%;
  -webkit-animation: flipNavBefore 3s infinite;
          animation: flipNavBefore 3s infinite;
}
nav .nav__burger::after {
  content: "";
  position: absolute;
  width: 90%;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  bottom: 25%;
  -webkit-animation: flipNavAfter 3s infinite;
          animation: flipNavAfter 3s infinite;
}

section {
  position: relative;
  padding: max(10px, 5.01vw) max(15px, 7.22vw);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
section.nav {
  padding: 0;
}
section.intro {
  position: relative;
  padding-left: max(15px, 5.33vw);
  font-size: clamp(16px, 1.65vw, 1.8em);
}
section.intro span {
  font-size: clamp(17px, 2vw, 1.9em);
  font-weight: 700;
  text-decoration: underline;
}
section.intro .intro__avatar {
  position: absolute;
  width: 15vw;
  right: 0;
  transform: translateY(-50%);
}
section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  z-index: -1;
}
section:nth-of-type(odd) {
  background-color: #1C1E1F;
  color: white;
}
section:nth-of-type(odd)::before {
  background-color: white;
}
section:nth-of-type(even) {
  background-color: white;
  color: #1C1E1F;
}
section:nth-of-type(even)::before {
  background-color: #1C1E1F;
}

.sideMenu {
  display: none;
}

.email {
  font-size: clamp(10px, 1.2vw, 1.5em);
  color: white;
  mix-blend-mode: difference;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 100;
  transform-origin: 100% 50%;
  transform: rotateZ(90deg) translateX(0%) translateY(150%);
}
.email:hover {
  text-shadow: 0px 0px 5px white;
  transition: all 0.3s;
}

.footerNav {
  display: none;
}

.customScrollbar {
  background-color: transparent;
  width: 7px;
  right: 0;
  z-index: 10;
  border-radius: 20px;
}
.customScrollbar .customScrollThumb {
  background-color: #1C1E1F;
  width: 100%;
  border-radius: 20px;
  border: 1px solid white;
}

.resume h3 {
  display: inline;
}
.resume a {
  border: 2px solid transparent;
  border-radius: 30px;
  background: rgb(255, 255, 255);
  box-shadow: 0px min(max(0.4em, 5px), 10px) 0px #1C1E1F;
  border-color: #1C1E1F;
  color: #1C1E1F;
  padding: max(5px, 0.15em) max(15px, 0.08em);
  font-size: clamp(12px, 1.3vw, 1.3em);
  font-weight: 600;
  float: right;
  margin-right: 13%;
}

@media (min-width: 500px) {
  nav.onSide {
    position: fixed;
    width: max(20px, 2.7vw);
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    flex-direction: column;
    left: 1.3%;
    top: 50%;
    padding-left: 0;
    background-color: black;
    mix-blend-mode: difference;
    box-shadow: 4px 3px 0px white;
    border: 2px solid white;
    border-radius: max(10px, 1.95vw);
    box-sizing: content-box;
    transform: translateY(-50%);
    transition: top 0.7s, left 0.5s, width 0.15s, height 0.25s;
  }
  nav.onSide a {
    position: relative;
    width: 1.3em;
    height: 1.3em;
    line-height: 1.35em;
    mix-blend-mode: difference;
    color: white;
    margin: max(7px, 1.1vw) 0;
  }
  nav.onSide a:first-of-type {
    position: relative;
    display: flex;
    justify-content: center;
  }
  nav.onSide a:first-of-type::before {
    content: "";
    position: absolute;
    top: 50%;
    left: auto;
    width: 65%;
    height: 65%;
    border-top: 4px solid white;
    border-left: 4px solid white;
    transform: rotateZ(45deg) scale(0.7);
    -webkit-animation: float 1s infinite ease-in;
            animation: float 1s infinite ease-in;
  }
  nav.onSide a.active:not(:first-of-type) {
    border-radius: 50%;
    background-color: white;
    color: black;
    font-weight: 600;
  }
  nav.onSide a.active:not(:first-of-type)::before {
    display: none;
  }
  nav.onSide a > span {
    display: none;
  }
  nav.onSide a + a::after {
    content: "";
    position: absolute;
    top: -50%;
    left: 0.15em;
    width: 1em;
    border-top: 2px solid white;
    background-color: transparent;
  }
  nav.onSide img {
    display: none;
  }
}
@media (max-width: 500px) {
  nav {
    min-height: 35px;
  }
  nav a {
    visibility: hidden;
    transform: translateX(600px);
    transition: all 1s;
  }
  nav .nav__burger {
    display: flex;
  }
  .footerNav {
    position: fixed;
    left: 50%;
    bottom: 3%;
    width: max(240px, 62.5vw);
    display: flex;
    justify-content: space-around;
    background-color: #1C1E1F;
    border: 1px solid #FFFFFF;
    box-shadow: 0px 2px 0px #FFFFFF, 0px 4px 0px #1C1E1F;
    border-radius: 20px;
    transform: translateX(-50%);
    padding: 0.25em 1.2em;
    line-height: 1.2;
    z-index: 10;
  }
  .footerNav__item {
    position: relative;
    display: flex;
    align-items: center;
    font-size: clamp(10px, 2.28vw, 1em);
    font-weight: 600;
    color: white;
  }
  .footerNav__item__link {
    margin-right: 0.4em;
    vertical-align: super;
  }
  .footerNav__item__img1 {
    width: 0.1 0.16em;
    height: 0.83em;
  }
  .footerNav__item__img2 {
    width: 1.25em;
    height: 0.66em;
  }
  .footerNav__item__img3 {
    width: 0.91em;
    height: 0.91em;
  }
  .footerNav hr {
    border: none;
    border-left: 1px solid white;
    height: max(10px, 2.28vw);
    margin: 0;
  }
  .sideMenu {
    display: block;
    position: absolute;
    top: 0;
    right: -100%;
    height: 100%;
    width: 80%;
    opacity: 0;
    z-index: 20;
    padding-top: 40%;
    background-color: white;
    transition: opacity 0.3s, right 0.3s;
  }
  .sideMenu__list {
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style-type: none;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    gap: max(20px, 3vw);
  }
  .sideMenu__item {
    padding: 0.2em 1em 0.3em;
    border: 2px solid transparent;
    border-radius: 30px;
    background: rgb(255, 255, 255);
    box-shadow: 0px min(max(0.4em, 5px), 10px) 0px #1C1E1F;
    border-color: #1C1E1F;
    color: #1C1E1F;
    width: 100%;
    text-align: center;
    font-weight: 600;
  }
  .sideMenu__item:hover {
    cursor: pointer;
    text-decoration: underline;
  }
  .sideMenu__close {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 70%;
    font-weight: 600;
    top: 15%;
    right: 10%;
    background-color: white;
    width: max(15px, 2vw);
    height: max(15px, 2vw);
    border: 1px solid #1C1E1F;
    border-radius: 50%;
    text-align: center;
    color: #1C1E1F;
    box-shadow: 0px 3px 0px #1C1E1F;
  }
  .sideMenu__close:hover {
    cursor: pointer;
  }
  .sideMenu.active {
    right: 0;
    opacity: 1;
    transition: all 0.3s;
  }
}
@media (max-width: 600px) {
  .intro__avatar {
    display: none;
  }
  .resume h3 {
    display: block;
  }
  .resume a {
    float: none;
    margin: 0 auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@-webkit-keyframes flipNavAfter {
  0% {
    transform: rotateZ(0deg);
  }
  60% {
    transform: rotateZ(360deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
@keyframes flipNavAfter {
  0% {
    transform: rotateZ(0deg);
  }
  60% {
    transform: rotateZ(360deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
@-webkit-keyframes flipNavBefore {
  0% {
    transform: rotateZ(0deg);
  }
  60% {
    transform: rotateZ(-360deg);
  }
  100% {
    transform: rotateZ(-360deg);
  }
}
@keyframes flipNavBefore {
  0% {
    transform: rotateZ(0deg);
  }
  60% {
    transform: rotateZ(-360deg);
  }
  100% {
    transform: rotateZ(-360deg);
  }
}
@-webkit-keyframes float {
  0% {
    top: 20%;
  }
  50% {
    top: 45%;
  }
  100% {
    top: 20%;
  }
}
@keyframes float {
  0% {
    top: 20%;
  }
  50% {
    top: 45%;
  }
  100% {
    top: 20%;
  }
}/*# sourceMappingURL=main.css.map */