body {
  margin: 0px;
}

* {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  box-sizing: border-box;
}
*:focus {
  outline: none;
}

button,
input[type=button],
input[type=submit] {
  padding: 12px 29px;
  margin: 10px;
  color: white;
  fill: white;
  border: none;
  border-radius: 5px;
  background-color: #6788ed;
  transition: background-color 350ms ease-in-out;
}
button:hover, button:focus, button:focus-within,
input[type=button]:hover,
input[type=button]:focus,
input[type=button]:focus-within,
input[type=submit]:hover,
input[type=submit]:focus,
input[type=submit]:focus-within {
  background-color: black;
  cursor: pointer;
}

.swal-button {
  background-color: #6788ed;
}

.head {
  background: linear-gradient(134deg, rgb(149, 181, 230) 0%, rgb(42, 72, 229) 100%);
  background-size: 250%;
  height: 100vh;
  position: relative;
  animation: gradient 13s ease infinite;
}

.head-title {
  position: absolute;
  color: white;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 10px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
  font-size: 55px;
  animation: slide-in 400ms ease-in;
}
.head-title * {
  margin: 0;
}
.head-title h1 {
  font-weight: 300;
}
.head-title h3 {
  font-weight: 100;
}
.head-title a {
  text-decoration: none;
  color: white;
}
.head-title a:hover {
  cursor: default;
}

.typewrite {
  pointer-events: none;
}

.typewrite > .wrap {
  border-right: 0.08em solid #fff;
  animation: blink-border-light 0.9s ease-in-out infinite;
}

.waves {
  display: block;
  margin-top: 60px;
  width: 100%;
  height: 60px;
  z-index: 5;
  position: absolute;
  bottom: 0;
  top: auto;
}

.wave1 use {
  fill: rgba(255, 255, 255, 0.1);
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
}

.wave2 use {
  fill: rgba(255, 255, 255, 0.2);
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
}

.wave3 use {
  fill: #fff;
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
}

.scroll-indicator {
  position: absolute;
  width: 40px;
  height: 70px;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 50px;
  box-shadow: inset 0 0 0 3px #fff;
  border: none;
  border-radius: 25px;
}
.scroll-indicator::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #fff;
  margin-left: -4px;
  top: 8px;
  border-radius: 4px;
  position: absolute;
  left: 50%;
  animation: scrollIndicator 1.5s ease-in-out infinite;
}

#navbar {
  z-index: 1000;
  height: 60px;
  width: 100vw;
  align-items: center;
  justify-content: space-between;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 5px 10px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.navwrapper {
  display: flex;
  justify-content: space-between;
  margin: auto;
  width: 80%;
}
.navwrapper a {
  color: rgb(91, 116, 241);
  text-decoration: none;
}
.navwrapper a::after {
  content: "";
  display: block;
  margin: auto;
  height: 2px;
  width: 0;
  background-color: transparent;
  transition: width 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.navwrapper a:hover::after, .navwrapper a:focus::after, .navwrapper a:focus-within::after {
  width: 100%;
  background-color: rgb(91, 116, 241);
}

.navitems {
  list-style: none;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
  padding: 0px;
  font-size: 14px;
  line-height: 150%;
}
.navitems li {
  margin-left: 30px;
  display: inline-block;
  text-align: center;
}

#navY {
  visibility: hidden;
  height: 0px;
  display: block;
}

.logo {
  margin: auto 0;
  margin-right: auto;
  position: relative;
}
.logo::before {
  content: attr(data-content);
  width: 0%;
  position: absolute;
  white-space: nowrap;
  overflow: hidden;
  background-color: #5b74f1;
  color: white;
  transition: width 400ms ease-in-out;
}
.logo::after {
  content: "";
  display: none !important;
}
.logo.dark-logo::before {
  color: #1e1e1e;
}
.logo:hover {
  cursor: pointer;
}
.logo:hover::before {
  width: 100%;
}

#nav-hamburger {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  flex-direction: column;
  align-items: center;
  z-index: 10000;
  height: 50px;
  transition: opacity 350ms ease-in-out;
}

#hamburger-items {
  display: none;
  flex-direction: column;
  height: 100%;
  gap: 40px;
  align-items: center;
  list-style: none;
  position: absolute;
  top: 40px;
  text-align: right;
  right: 10px;
  transition: opacity 500ms ease-in-out;
}
#hamburger-items a {
  opacity: 0;
  color: white;
  text-decoration: none;
  padding-bottom: 10px;
  font-size: 20px;
  transition: opacity 300ms ease-in-out 100ms;
}
#hamburger-items a::after {
  content: "";
  display: block;
  margin: auto;
  height: 2px;
  width: 0;
  background-color: transparent;
  transition: width 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
#hamburger-items a:hover::after, #hamburger-items a:focus::after, #hamburger-items a:focus-within::after {
  width: 100%;
  background-color: white;
}
#hamburger-items li {
  z-index: 10000;
}
#hamburger-items:hover, #hamburger-items:focus, #hamburger-items:focus-within {
  opacity: 1;
}
#hamburger-items::before {
  content: "";
  width: 0px;
  height: 100vh;
  position: fixed;
  background-color: rgb(91, 116, 241);
  top: 0;
  right: 0;
  transition: width 500ms ease-in-out;
}
#hamburger-items.hamburger-showing a {
  animation: fade-in 300ms ease-in-out;
  opacity: 1;
}
#hamburger-items.hamburger-showing::before {
  width: 100vw;
  animation: grow-width 500ms ease-in-out;
}
#hamburger-items .darkmode {
  padding-bottom: 0px;
}
#hamburger-items .darkmode svg {
  fill: white;
  width: 30px;
  height: 30px;
}

.hamburger-box {
  width: 50px;
  height: 50px;
  background-color: rgba(86, 110, 230, 0.3);
  border-radius: 100%;
  position: relative;
}
.hamburger-box:hover, .hamburger-box:focus, .hamburger-box:focus-within {
  cursor: pointer;
}
.hamburger-box:hover #hamburger-inner, .hamburger-box:hover #hamburger-inner::before, .hamburger-box:hover #hamburger-inner::after, .hamburger-box:focus #hamburger-inner, .hamburger-box:focus #hamburger-inner::before, .hamburger-box:focus #hamburger-inner::after, .hamburger-box:focus-within #hamburger-inner, .hamburger-box:focus-within #hamburger-inner::before, .hamburger-box:focus-within #hamburger-inner::after {
  opacity: 0.7;
}

#hamburger-inner {
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
#hamburger-inner, #hamburger-inner::before, #hamburger-inner::after {
  z-index: 1000;
  width: 29px;
  height: 4px;
  border-radius: 4px;
  opacity: 1;
  transition: opacity 400ms ease-in-out;
  position: absolute;
  background-color: white;
}
#hamburger-inner::before, #hamburger-inner::after {
  content: "";
  display: block;
}
#hamburger-inner::before {
  top: 10px;
  transition: top 0.12s ease-in-out;
}
#hamburger-inner::after {
  top: -10px;
  transition: top 0.12s ease-in-out;
}
#hamburger-inner.hamburger-clicked::after, #hamburger-inner.hamburger-clicked::before {
  top: 0px;
}
#hamburger-inner:hover, #hamburger-inner:hover::after, #hamburger-inner:hover::before, #hamburger-inner:focus, #hamburger-inner:focus::after, #hamburger-inner:focus::before, #hamburger-inner:focus-within, #hamburger-inner:focus-within::after, #hamburger-inner:focus-within::before {
  opacity: 0.7;
}

@media (max-width: 800px) {
  #navbar,
  #navitems {
    display: none;
  }
  #navY {
    height: 60px !important;
  }
  #nav-hamburger {
    display: flex;
  }
}
.content-section {
  width: 100%;
  position: relative;
  margin-bottom: 100px;
  margin-top: 125px;
  color: #383838;
}

.title {
  margin: 0 auto;
  margin-top: 100px;
  margin-bottom: 50px;
  font-size: 35px;
  width: -moz-fit-content;
  width: fit-content;
  color: rgb(35, 51, 131);
  font-weight: 100;
  position: relative;
  z-index: 10;
  display: block;
}
.title::before {
  content: "";
  position: absolute;
  display: block;
  width: 15px;
  height: 2px;
  bottom: 4.5px;
  right: -15px;
  z-index: 0;
  background-color: #86B0FF;
  transition: width 400ms ease-in-out, right 400ms ease-in-out;
}
.title:hover, .title:focus, .title:focus-within {
  cursor: pointer;
}
.title:hover::before, .title:focus::before, .title:focus-within::before {
  width: 100%;
  right: 0;
  opacity: 1;
}

.about-content {
  width: 80vw;
  padding-top: 50px;
  overflow-x: hidden;
  margin: 0 auto;
  display: flex;
  gap: 55px;
}

@media (max-width: 450px) {
  .about-content {
    flex-direction: column;
    align-items: center;
  }
  .about-description {
    text-align: center;
  }
}
.about-avatar {
  width: 300px;
  height: 300px;
  border-radius: 100%;
  border: 0.5px solid #b6b6b6;
  box-shadow: 10px 10px 9px -10px rgba(0, 0, 0, 0.39);
}

.about-description {
  font-size: 20px;
  font-weight: 100;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto 0;
}

.social-links {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: flex;
}
.social-links a {
  margin: 10px;
  margin-top: 0px;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.social-links a svg {
  color: #6788ed;
  fill: #6788ed;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto;
  display: block;
  transition: color 400ms ease-in-out, fill 400ms ease-in-out;
}
.social-links a:hover svg, .social-links a:focus svg, .social-links a:focus-within svg {
  cursor: pointer;
  color: black;
  fill: black;
}

.skills {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.skill-card {
  margin: 10px;
  width: 200px;
  height: 200px;
  padding: 20px;
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: rgb(248, 248, 248);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 5px 10px;
  border-radius: 10px;
  transition: transform 400ms ease-in-out;
}
.skill-card:hover, .skill-card:focus, .skill-card:focus-within {
  transform: scale(1.1);
  cursor: pointer;
}

.skill-icon {
  width: 90px;
  height: 90px;
  border-radius: 100%;
  background-color: #6788ed;
  display: flex;
  justify-content: center;
  align-items: center;
}
.skill-icon svg {
  width: 50px;
  height: 50px;
  fill: #f8f8f8;
}

.skill-title {
  color: rgb(35, 51, 131);
  font-weight: 400;
}

#projects {
  background-color: #6788ed;
  padding-bottom: 30px;
}
#projects h1.title {
  color: white;
  padding-top: 20px;
}
#projects h1.title::before {
  background-color: #dfecff;
}

.projects {
  width: 100%;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  flex-wrap: nowrap;
  flex-grow: unset;
  flex-shrink: unset;
}

.swiper {
  width: 100%;
  height: 300px;
}

.swiper-slide {
  width: 500px !important;
  filter: blur(5px);
}

.swiper-slide-visible {
  filter: blur(0px) !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: rgb(46, 46, 62) !important;
}
.swiper-button-next.dark-swiper-button,
.swiper-button-prev.dark-swiper-button {
  color: rgb(215, 247, 255) !important;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 35px !important;
  color: inherit !important;
}

.swiper-button-next {
  right: -2px !important;
}

.swiper-button-prev {
  left: -2px !important;
}

.project-card {
  padding: 15px;
  background-color: rgb(248, 248, 248);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 5px 10px;
  border-radius: 13px;
  display: flex;
}

.project-content {
  display: block;
  position: relative;
}

.project-title {
  font-size: 25px;
  font-weight: 300;
  color: #3e54c0;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  padding-bottom: 0;
  margin-bottom: 0;
}
.project-title::before {
  content: attr(data-content);
  width: 0%;
  position: absolute;
  white-space: nowrap;
  overflow: hidden;
  background-color: #5b74f1;
  color: white;
  transition: width 400ms ease-in-out;
}
.project-title:hover::before {
  width: 100%;
  cursor: pointer;
}

.project-date {
  padding: 0px;
  margin: 0px;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 300;
  opacity: 0.85;
  font-style: italic;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.project-description {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-weight: 200;
}
.project-description a {
  color: #233383;
  text-decoration: none;
  position: relative;
}
.project-description a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #394ba8;
  transition: width 400ms ease-in-out;
}
.project-description a:hover::after {
  width: 100%;
}

.project-github {
  width: 24px;
  height: 24px;
  color: rgb(91, 116, 241);
  fill: rgb(91, 116, 241);
  bottom: 0;
  position: absolute;
}
.project-github svg {
  transition: fill 400ms ease-in-out;
}
.project-github:hover svg, .project-github:focus svg, .project-github:focus-within svg {
  fill: black;
}

.project-languages {
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  height: 24px;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.project-languages svg {
  width: 24px;
  height: 24px;
  color: rgb(91, 116, 241);
  fill: rgb(91, 116, 241);
}

.contact-card {
  width: 85%;
  height: -moz-fit-content;
  height: fit-content;
  margin: 0 auto;
  background-color: rgb(248, 248, 248);
  padding: 50px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 5px 10px;
}

#contact-form {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "email name" "textarea textarea" "button button";
  position: relative;
}
#contact-form button {
  grid-area: button;
}

@media (max-width: 530px) {
  #contact-form {
    grid-template-areas: "email email" "name name" "textarea textarea" "button button";
  }
}
.contact-email {
  grid-area: email;
}

.contact-name {
  grid-area: name;
}

.contact-message {
  grid-area: textarea;
}
.contact-message textarea {
  height: 200px;
  overflow: auto;
  resize: none;
}

.contact-texts {
  padding: 10px 15px;
  border-radius: 5px;
  background-color: rgb(234, 234, 234);
  border: medium none;
  margin: 10px 0px;
  width: 100%;
}
.contact-texts::-moz-placeholder {
  font-style: italic;
}
.contact-texts::placeholder {
  font-style: italic;
}
.contact-texts::-moz-placeholder {
  font-style: italic;
}
.contact-texts:-moz-placeholder {
  font-style: italic;
}
.contact-texts::-webkit-input-placeholder {
  font-style: italic;
}
.contact-texts:-ms-input-placeholder {
  font-style: italic;
}

footer {
  width: 100vw;
  height: -moz-fit-content;
  height: fit-content;
  padding: 10px;
  position: relative;
  background-color: #5a7de9;
}
footer div {
  margin: 0 auto;
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  bottom: 0;
  top: 0;
  position: relative;
}

#toTop {
  display: block;
  opacity: 1;
  bottom: 20px;
  border: solid white;
  border-width: 0px 3.5px 3.5px 0;
  border-bottom-right-radius: 3.5px;
  width: 15px;
  height: 15px;
  transform: rotate(-135deg);
  transition: opacity 400ms ease-in-out;
}
#toTop:hover, #toTop:hover::before, #toTop:hover::after, #toTop:focus, #toTop:focus::before, #toTop:focus::after, #toTop:focus-within, #toTop:focus-within::before, #toTop:focus-within::after {
  opacity: 0.7;
  cursor: pointer;
}
#toTop::before, #toTop::after {
  content: "";
  position: absolute;
  width: 3.5px;
  height: 3.5px;
  background: white;
  border-radius: 50%;
}
#toTop::before {
  top: -1.75px;
  right: 0;
  transform: translateX(100%);
}
#toTop::after {
  left: -1.75px;
  bottom: 0;
  transform: translateY(100%);
}

#credits {
  display: inline;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  height: 15px;
  font-size: 15px;
  position: relative;
  color: white;
}
#credits a {
  display: inline;
  font-size: 15px;
  height: 15px;
  line-height: 15px;
  color: white;
  text-decoration: none;
  text-align: center;
  position: relative;
}
#credits a::before {
  content: "";
  width: 0;
  height: 2px;
  background-color: white;
  border-radius: 10px;
  bottom: -5.5px;
  right: 0;
  left: 0;
  margin: 0 auto;
  position: absolute;
  transition: width 400ms ease-in-out;
}
#credits a:hover {
  cursor: pointer;
}
#credits a:hover::before {
  width: 100%;
}

.darkmode svg {
  width: 20px;
  height: 20px;
  padding: 0px;
  margin: 0px;
  fill: rgb(91, 116, 241);
  transform: scaleX(-1);
}
.darkmode svg:hover, .darkmode svg:focus, .darkmode svg:focus-within {
  cursor: pointer;
  fill: black;
}
.darkmode::after, .darkmode::before {
  display: none !important;
}
.darkmode.darkmodeactive svg {
  fill: rgb(91, 116, 241);
  transform: scaleX(1);
}
.darkmode.darkmodeactive svg:hover, .darkmode.darkmodeactive svg:focus, .darkmode.darkmodeactive svg:focus-within {
  fill: rgb(223, 228, 251);
}

.bodydark {
  background: black;
  background-color: black;
  color: white;
}

.darktitle {
  color: rgb(217, 229, 247);
}

.darkwaves .wave1 use {
  fill: rgba(30, 30, 30, 0.1);
}
.darkwaves .wave2 use {
  fill: rgba(30, 30, 30, 0.2);
}
.darkwaves .wave3 use {
  fill: rgb(30, 30, 30);
}

@media (max-width: 800px) {
  .darkwaves .wave1 use {
    fill: rgba(0, 0, 0, 0.1);
  }
  .darkwaves .wave2 use {
    fill: rgba(0, 0, 0, 0.2);
  }
  .darkwaves .wave3 use {
    fill: rgb(0, 0, 0);
  }
}
.darknavbar {
  background-color: rgba(38, 38, 38, 0.8) !important;
}

.darkheadtitle {
  color: black;
}
.darkheadtitle a {
  color: black;
}
.darkheadtitle .typewrite > .wrap {
  border-right: 0.08em solid rgb(31, 31, 31);
  animation: blink-border-dark 0.9s ease-in-out infinite;
}

.dark-scroll-indicate {
  box-shadow: inset 0 0 0 3px black;
}
.dark-scroll-indicate::before {
  background-color: black;
}

.dark-social-links a:hover svg, .dark-social-links a:focus svg, .dark-social-links a:focus-within svg {
  color: rgb(231, 236, 245);
  fill: rgb(231, 236, 245);
}

.dark-card {
  background-color: rgb(39, 39, 39) !important;
  color: rgb(196, 201, 230);
}

.dark-description {
  color: rgb(196, 201, 230);
}

.dark-hyperlink a {
  color: #94a6ff;
  text-decoration: none;
}

.dark-icon {
  background-color: #6685e1;
}
.dark-icon svg {
  fill: rgb(39, 39, 39);
}

.dark-section {
  background-color: #6685e1 !important;
}

.dark-github:hover svg,
.dark-github:focus svg,
.dark-github:focus-within svg {
  fill: white;
}

.dark-input {
  background-color: rgb(72, 72, 72);
  color: rgb(231, 236, 245);
}
.dark-input::-moz-placeholder {
  font-style: italic;
  color: rgb(213, 217, 224);
}
.dark-input::placeholder {
  font-style: italic;
  color: rgb(213, 217, 224);
}
.dark-input::-moz-placeholder {
  font-style: italic;
  color: rgb(213, 217, 224);
}
.dark-input:-moz-placeholder {
  font-style: italic;
  color: rgb(213, 217, 224);
}
.dark-input::-webkit-input-placeholder {
  font-style: italic;
  color: rgb(213, 217, 224);
}
.dark-input:-ms-input-placeholder {
  font-style: italic;
  color: rgb(213, 217, 224);
}

.dark-button {
  background-color: #6788ed;
  transition: background-color 350ms ease-in-out, color 350ms ease-in-out;
}
.dark-button:hover, .dark-button:focus, .dark-button:focus-within {
  background-color: #bcc6e5;
  color: black;
}

.dark-footer {
  background-color: #333;
}

.hidden {
  opacity: 0 !important;
  filter: blur(3px) !important;
  transition: opacity 400ms ease-in-out, filter 300ms ease-in-out;
}
.hidden.stagger {
  transform: translateX(-10%);
  transition: transform 400ms ease-in-out;
}

.visible {
  opacity: 1 !important;
  filter: blur(0px) !important;
}
.visible.stagger {
  transform: translateX(0%);
}

@keyframes scrollIndicator {
  0% {
    transform: translateY(0px);
    opacity: 1;
  }
  80% {
    opacity: 0;
    transform: translateY(46px);
  }
  81% {
    transform: translateY(0px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}
@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes grow-width {
  0% {
    width: 0px;
  }
  100% {
    width: 100vw;
  }
}
@keyframes slide-in {
  0% {
    opacity: 0;
    bottom: 10%;
  }
  100% {
    opacity: 1;
    bottom: 0;
  }
}
@keyframes blink-border-light {
  0% {
    border-right: 0.08em solid #fff;
  }
  50% {
    border-right: 0.08em solid transparent;
  }
  100% {
    border-right: 0.08em solid #fff;
  }
}
@keyframes blink-border-dark {
  0% {
    border-right: 0.08em solid rgb(31, 31, 31);
  }
  50% {
    border-right: 0.08em solid transparent;
  }
  100% {
    border-right: 0.08em solid rgb(31, 31, 31);
  }
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}/*# sourceMappingURL=style.css.map */