@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 3rem;
}

body {
  background-color: rgb(249, 249, 249);
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

/** Links Project Github Site**/
a:not(.navbar a, .btn-grad, .btn-link-youtube) {
  color: #ffea9f;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1137254902);
  position: relative;
  padding: 0.6rem 2.7rem;
  z-index: 2;
  text-transform: uppercase;
  transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: inline-block;
}
@media screen and (max-width: 430px) {
  a:not(.navbar a, .btn-grad, .btn-link-youtube) {
    text-align: center;
    width: 100%;
    margin-bottom: 1.5rem;
  }
}
a:not(.navbar a, .btn-grad, .btn-link-youtube)::before, a:not(.navbar a, .btn-grad, .btn-link-youtube)::after {
  content: "";
  position: absolute;
  transition: inherit;
  top: 0;
  width: 0;
  height: 100%;
}
a:not(.navbar a, .btn-grad, .btn-link-youtube):hover {
  color: #e3ebee;
  transition-delay: 0.5s;
}
a:not(.navbar a, .btn-grad, .btn-link-youtube)::before {
  right: 0;
  border: 1px solid #fff;
  border-left: 0;
  border-right: 0;
}
a:not(.navbar a, .btn-grad, .btn-link-youtube)::after {
  left: 0;
}
a:not(.navbar a, .btn-grad, .btn-link-youtube):hover::before, a:not(.navbar a, .btn-grad, .btn-link-youtube):hover::after {
  width: 100%;
}
a:not(.navbar a, .btn-grad, .btn-link-youtube):hover::before {
  transition-delay: 0s;
}
a:not(.navbar a, .btn-grad, .btn-link-youtube):hover::after {
  background: rgba(255, 255, 255, 0.1137254902);
  z-index: -1;
  transition-delay: 0.35s;
}

button {
  all: unset;
}

h2 {
  color: #ffea9f;
}

h1,
h2,
h3 {
  font-weight: 700;
}

h2 {
  font-weight: 800;
}

h3 {
  font-weight: 700;
}

p {
  line-height: 170%;
}

.txt-yellow {
  color: #ffea9f;
}

a.btn-grad:not(.navbar .navbar-nav .btn-grad),
button[type=submit].btn-grad {
  background-color: #161616;
  background-image: radial-gradient(at 65% 75%, #171717 0, rgba(0, 0, 0, 0) 100%), radial-gradient(at 65% 42%, rgba(255, 200, 0, 0.7019607843) 0, rgba(0, 0, 0, 0) 50%);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 8px 8px rgba(0, 0, 0, 0.2), 0px 16px 16px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  padding: 0.6rem 1.8rem;
  text-decoration: none;
  color: #dadada;
  letter-spacing: 1px;
  font-weight: 600;
  border-bottom: 2px solid rgba(244, 159, 140, 0.231372549);
  max-height: 40px;
  font-size: 1rem;
  text-shadow: 0 3px 3px rgba(30, 30, 30, 0.72);
  transition: box-shadow 0.2s ease-in-out, border-bottom 0.5s ease-out, color 0.2s ease-out;
}
a.btn-grad:not(.navbar .navbar-nav .btn-grad):hover, a.btn-grad:not(.navbar .navbar-nav .btn-grad):focus,
button[type=submit].btn-grad:hover,
button[type=submit].btn-grad:focus {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  color: #ffea9f;
  border-bottom: 2px solid rgba(243, 212, 168, 0);
}

@media screen and (min-width: 992px) {
  .navbar.navbar-expand-lg .navbar-nav .btn-grad {
    background-color: #161616;
    background-image: radial-gradient(at 65% 75%, #171717 0, rgba(0, 0, 0, 0) 100%), radial-gradient(at 65% 42%, rgba(255, 200, 0, 0.7019607843) 0, rgba(0, 0, 0, 0) 50%);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 8px 8px rgba(0, 0, 0, 0.2), 0px 16px 16px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    padding: 0.6rem 1.8rem;
    text-decoration: none;
    color: #dadada;
    letter-spacing: 1px;
    font-weight: 600;
    border-bottom: 2px solid rgba(244, 159, 140, 0.231372549);
    max-height: 40px;
    font-size: 1rem;
    text-shadow: 0 3px 3px rgba(30, 30, 30, 0.72);
    transition: box-shadow 0.2s ease-in-out, border-bottom 0.5s ease-out, color 0.2s ease-out;
  }
  .navbar.navbar-expand-lg .navbar-nav .btn-grad:hover, .navbar.navbar-expand-lg .navbar-nav .btn-grad:focus {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    color: #ffea9f;
    border-bottom: 2px solid rgba(243, 212, 168, 0);
  }
}
.section {
  position: relative;
  padding-block: 9rem;
}
@media screen and (max-width: 767px) {
  .section {
    padding-block: 3.6rem;
  }
}
.section:not(.section-contact)::after {
  content: "";
  position: absolute;
  bottom: -4rem;
  height: 8rem;
  width: 100%;
  z-index: 1;
  background-color: #161616;
  background: linear-gradient(180deg, rgba(22, 22, 22, 0), #161616, rgba(22, 22, 22, 0));
}

.navbar {
  background-color: rgba(22, 22, 22, 0.5098039216);
  background-image: radial-gradient(at 55% 75%, rgba(18, 18, 18, 0.4705882353) 0, rgba(255, 0, 0, 0) 100%);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 4px 4px rgba(0, 0, 0, 0.25);
  width: 100%;
  border-bottom: 1px solid rgb(14, 14, 14);
  z-index: 15;
}
.navbar .navbar-nav .nav-link {
  color: rgba(171, 168, 172, 0.4901960784);
  text-shadow: 0 3px 3px rgba(30, 30, 30, 0.72);
  font-weight: 600;
  width: 7.1rem;
}
.navbar .navbar-brand,
.navbar .navbar-nav .nav-link.active {
  letter-spacing: 1px;
  font-weight: 600;
  color: #ffea9f;
}
.navbar .navbar-nav .btn-grad {
  background-color: none;
}
.navbar .navbar-toggler-icon {
  filter: invert(100%) sepia(6%) saturate(7418%) hue-rotate(195deg) brightness(114%) contrast(100%);
}
.navbar .navbar-toggler {
  border: 1px solid rgb(48, 48, 48);
  color: rgba(39, 39, 41, 0.846);
}
.navbar .navbar-toggler .navbar-toggler-icon {
  filter: invert(100%) sepia(2%) saturate(1244%) hue-rotate(-17deg) brightness(313%) contrast(100%);
}
@media screen and (min-width: 992px) {
  .navbar .navbar-collapse.collapsing {
    overflow: visible;
  }
}

.section-header {
  position: relative;
  min-height: 75%;
  height: 100%;
  width: auto;
  color: white;
  background-color: #161616;
  background-image: radial-gradient(at 65% 75%, #171717 0, rgba(0, 0, 0, 0) 100%), radial-gradient(at 65% 42%, rgba(255, 200, 0, 0.7019607843) 0, rgba(0, 0, 0, 0) 50%), radial-gradient(at 30% 35%, rgba(245, 61, 76, 0.7019607843) 0, rgba(0, 0, 0, 0) 35%), radial-gradient(at 34% 57%, rgba(234, 0, 255, 0.7019607843) 0, rgba(0, 0, 0, 0) 50%), radial-gradient(at 76% 53%, rgba(89, 0, 255, 0.7019607843) 0, rgba(0, 0, 0, 0) 64%);
}
.section-header .header-img-wrapper {
  position: relative;
}
.section-header img {
  position: relative;
  max-width: 100%;
  z-index: 5;
  filter: drop-shadow(-5px -12px 32px rgba(0, 0, 0, 0.2901960784));
}
.section-header .grid {
  padding-block: 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "a b" "c b";
}
.section-header .grid .header-title {
  font-weight: 800;
  letter-spacing: 1px;
  grid-area: a;
  align-self: flex-end;
  max-width: 15ch;
}
.section-header .grid .header-content-wrapper {
  max-width: 38ch;
  grid-area: c;
}
.section-header .grid .header-img-wrapper {
  grid-area: b;
}
@media screen and (max-width: 767px) {
  .section-header .grid {
    grid-template-columns: 1fr;
    grid-template-areas: "a" "b" "c";
  }
  .section-header .header-content-wrapper,
  .section-header .header-title {
    margin: auto;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .section-header .scroll-el-wrapper .scroll-el {
    display: none;
  }
}
.section-header .scroll-el {
  position: absolute;
  z-index: 10;
  bottom: 2rem;
  width: 33px;
  height: 60px;
  border-radius: 16px;
  border: 1px solid rgba(255, 234, 159, 0.1607843137);
}
.section-header .scroll-el::after {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.5rem;
  height: 0.8rem;
  background-color: rgba(255, 234, 159, 0.2352941176);
  border-radius: 16px;
  animation: animScroll 1.8s ease forwards infinite;
  opacity: 0;
}
@keyframes animScroll {
  50% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 1.6rem);
    opacity: 0;
  }
}

.section-about {
  color: white;
  background-color: #161616;
  background-image: radial-gradient(at 65% 75%, #171717 0, rgba(0, 0, 0, 0) 100%), radial-gradient(at 65% 42%, rgba(89, 0, 255, 0.7019607843) 0, rgba(0, 0, 0, 0) 50%), radial-gradient(at 30% 35%, rgba(234, 0, 255, 0.7019607843) 0, rgba(0, 0, 0, 0) 35%), radial-gradient(at 34% 57%, rgba(245, 61, 76, 0.7019607843) 0, rgba(0, 0, 0, 0) 50%), radial-gradient(at 76% 53%, rgba(255, 200, 0, 0.7019607843) 0, rgba(0, 0, 0, 0) 58%);
}
.section-about .section-about-img-wrapper {
  position: relative;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  margin-top: 1.34rem;
}
.section-about .section-about-img-wrapper img {
  position: relative;
  z-index: 10;
  width: inherit;
  max-height: 18rem;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
  border-radius: 6px;
}
@media screen and (min-width: 992px) {
  .section-about .section-about-img-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    top: -1.34rem;
    left: 1.34rem;
    width: 100%;
    height: 100%;
    max-height: 18rem;
    background-color: rgba(24, 21, 29, 0.3647058824);
    border-radius: 6px;
  }
}

.section-skills {
  color: white;
  background: radial-gradient(100% 379.7% at 100% 100%, rgba(13, 10, 15, 0.96) 0%, rgba(74, 62, 76, 0.96) 100%);
  background-color: #161616;
  background-image: radial-gradient(at 65% 75%, #171717 0, rgba(0, 0, 0, 0) 100%), radial-gradient(at 65% 42%, rgba(255, 200, 0, 0.7019607843) 0, rgba(0, 0, 0, 0) 50%), radial-gradient(at 30% 35%, rgba(245, 61, 76, 0.7019607843) 0, rgba(0, 0, 0, 0) 35%), radial-gradient(at 34% 57%, rgba(234, 0, 255, 0.7019607843) 0, rgba(0, 0, 0, 0) 50%), radial-gradient(at 76% 53%, rgba(89, 0, 255, 0.7019607843) 0, rgba(0, 0, 0, 0) 64%);
}
.section-skills .container-skills {
  gap: 0.6rem;
  width: 100%;
}
.section-skills .container-skills .skill-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #bfb5c2;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(7.4px);
  -webkit-backdrop-filter: blur(7.4px);
  border: 1px solid rgba(255, 255, 255, 0.084);
  border-top: 3px solid rgba(195, 195, 195, 0.575);
  border-left: 3px solid rgba(195, 195, 195, 0.575);
  max-width: 31%;
  padding-block: 1rem;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0) 0px 22px 70px 4px;
  transition: all 0.3s ease-in-out;
}
.section-skills .container-skills .skill-wrapper:hover, .section-skills .container-skills .skill-wrapper:focus {
  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
  border-top: 3px solid rgba(195, 195, 195, 0.1);
  border-left: 3px solid rgba(195, 195, 195, 0.1);
}
.section-skills .container-skills .skill-wrapper img {
  transform: translateZ(8rem);
  min-height: 1.8rem;
  margin-bottom: 0.8rem;
  filter: invert(65%) sepia(1%) saturate(1547%) hue-rotate(290deg) brightness(134%) contrast(100%) drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.4));
}
.section-skills .container-skills .skill-wrapper .label {
  color: #ffffff;
  margin-bottom: 0;
  font-weight: 700;
  font-weight: 0;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.6);
}
@media screen and (min-width: 991px) {
  .section-skills .container-skills .skill-wrapper .label {
    color: #cdc0ce;
    font-size: 1rem;
  }
}
.section-skills .section-skills-content {
  max-width: 65ch;
}
.section-skills .section-skills-imgs {
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-projects {
  background-color: #161616;
  background-image: radial-gradient(at 65% 75%, #171717 0, rgba(0, 0, 0, 0) 100%), radial-gradient(at 65% 42%, rgba(89, 0, 255, 0.7019607843) 0, rgba(0, 0, 0, 0) 50%), radial-gradient(at 30% 35%, rgba(234, 0, 255, 0.7019607843) 0, rgba(0, 0, 0, 0) 35%), radial-gradient(at 34% 57%, rgba(245, 61, 76, 0.7019607843) 0, rgba(0, 0, 0, 0) 50%), radial-gradient(at 76% 53%, rgba(255, 200, 0, 0.7019607843) 0, rgba(0, 0, 0, 0) 58%);
  color: white;
}
.section-projects h3 {
  color: #ffea9f;
}
.section-projects .grid {
  padding-block: 5rem;
}
.section-projects .grid.section-content-left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "a b" "c b";
}
.section-projects .grid.section-content-left .section-project-title {
  grid-area: a;
  align-self: flex-end;
}
.section-projects .grid.section-content-left .section-project-content-wrapper {
  grid-area: c;
}
.section-projects .grid.section-content-left .section-project-img-wrapper {
  grid-area: b;
}
.section-projects .grid.section-content-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "b a" "b c";
}
.section-projects .grid.section-content-right .section-project-title {
  grid-area: a;
  align-self: flex-end;
  color: #ffea9f;
}
.section-projects .grid.section-content-right .section-project-content-wrapper {
  grid-area: c;
}
.section-projects .grid.section-content-right .section-project-img-wrapper {
  grid-area: b;
}
.section-projects .section-project-content-wrapper p:last-of-type {
  margin-bottom: 1.5rem;
}
.section-projects .img-project-cover {
  width: 100%;
  border-radius: 6px 6px 0 0;
  margin-bottom: 9px;
  border: 1px solid rgba(255, 255, 255, 0.084);
  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
}
.section-projects .section-project-details {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(7.4px);
  -webkit-backdrop-filter: blur(7.4px);
  border: 1px solid rgba(255, 255, 255, 0.084);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  padding-inline: 1rem;
  border-radius: 0 0 6px 6px;
}
.section-projects .section-project-details img {
  width: auto;
  height: 2.2rem;
  padding: 0.3rem;
  filter: invert(65%) sepia(1%) saturate(1547%) hue-rotate(290deg) brightness(134%) contrast(100%);
}
.section-projects .details-with-demo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .section-projects .grid.section-content-left,
  .section-projects .grid.section-content-right {
    grid-template-columns: 1fr;
    grid-template-areas: "a" "b" "c";
  }
}

.section-exp {
  color: white;
  background-color: #161616;
  background-image: radial-gradient(at 65% 75%, #171717 0, rgba(0, 0, 0, 0) 100%), radial-gradient(at 65% 42%, rgba(255, 200, 0, 0.7019607843) 0, rgba(0, 0, 0, 0) 50%), radial-gradient(at 30% 35%, rgba(245, 61, 76, 0.7019607843) 0, rgba(0, 0, 0, 0) 35%), radial-gradient(at 34% 57%, rgba(234, 0, 255, 0.7019607843) 0, rgba(0, 0, 0, 0) 50%), radial-gradient(at 76% 53%, rgba(89, 0, 255, 0.7019607843) 0, rgba(0, 0, 0, 0) 64%);
  z-index: 1;
}
.section-exp .h4 {
  max-width: 21ch;
}
.section-exp .wrapper-exp {
  position: relative;
}
.section-exp .wrapper-exp p[data-exp] {
  cursor: pointer;
  opacity: 0.61;
  transition: opacity 0.3s ease;
}
.section-exp .wrapper-exp p[data-exp].active, .section-exp .wrapper-exp p[data-exp]:hover, .section-exp .wrapper-exp p[data-exp]:focus {
  opacity: 1;
}
.section-exp .wrapper-exp::after {
  content: "";
  position: absolute;
  z-index: -2;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background-color: #3b3b3b;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5647058824), #9b9b9b, rgba(0, 0, 0, 0.5647058824));
}
.section-exp .wrapper-exp::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: var(--prev-pos-Y);
  left: 50%;
  transform: translateX(-50%);
  height: 25px;
  width: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1137254902);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  border-radius: 6px;
  box-shadow: 0 0 6px 6px rgba(36, 36, 36, 0.217);
}
.section-exp .wrapper-desc-exp {
  color: #ebebeb;
  position: relative;
  top: -2.5rem;
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.064);
  border-radius: 6px;
  backdrop-filter: blur(7.4px);
  -webkit-backdrop-filter: blur(7.4px);
  border: 1px solid rgba(255, 255, 255, 0.084);
  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
  opacity: 0;
}
.section-exp .wrapper-desc-exp.active {
  animation: fadeIn 0.6s ease-in-out forwards;
}
.section-exp .wrapper-desc-exp p.h5 {
  color: #ffea9f;
}
@keyframes fadeIn {
  100% {
    opacity: 1;
    transform: translateY(3rem);
  }
}
.section-exp .wrapper-desc-exp p:last-child {
  margin-bottom: 0;
}

.section-contact {
  color: white;
  background-color: #161616;
  background-image: radial-gradient(at 65% 75%, #171717 0, rgba(0, 0, 0, 0) 100%), radial-gradient(at 65% 42%, rgba(89, 0, 255, 0.7019607843) 0, rgba(0, 0, 0, 0) 50%), radial-gradient(at 30% 35%, rgba(234, 0, 255, 0.7019607843) 0, rgba(0, 0, 0, 0) 35%), radial-gradient(at 34% 57%, rgba(245, 61, 76, 0.7019607843) 0, rgba(0, 0, 0, 0) 50%), radial-gradient(at 76% 53%, rgba(255, 200, 0, 0.7019607843) 0, rgba(0, 0, 0, 0) 58%);
}
.section-contact form {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7.4px);
  -webkit-backdrop-filter: blur(7.4px);
  border: 1px solid rgba(255, 255, 255, 0.084);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
}
.section-contact form input:-webkit-autofill,
.section-contact form input:-webkit-autofill:hover,
.section-contact form input:-webkit-autofill:focus,
.section-contact form input:-webkit-autofill:active {
  -webkit-transition: background-color 600000s 0s, color 100000s 0s;
  transition: background-color 600000s 0s, color 100000s 0s;
}
.section-contact form input[data-autocompleted] {
  background-color: transparent !important;
}
.section-contact form ::-moz-placeholder {
  color: rgb(169, 169, 169);
  opacity: 1;
}
.section-contact form ::placeholder {
  color: rgb(169, 169, 169);
  opacity: 1;
}
.section-contact form ::-ms-input-placeholder {
  color: rgb(169, 169, 169);
}
.section-contact form textarea,
.section-contact form textarea:focus,
.section-contact form textarea:valid,
.section-contact form .form-control,
.section-contact form .form-control:focus,
.section-contact form .form-control:valid {
  outline: none;
  border: none;
  background-color: rgba(12, 12, 12, 0.3333333333);
  color: #ffffff;
  font-size: 1rem;
  resize: none;
}
.section-contact form .form-control:focus {
  border-color: #505050;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 18px rgba(120, 120, 120, 0.6);
}
.section-contact form .btn-submit-form {
  width: 6rem;
  text-align: center;
}
.section-contact form .invalid-feedback {
  opacity: 0;
  transform: translateY(-80%);
}
.section-contact form #hpot {
  position: absolute;
  left: -1000vw;
}
.section-contact form.was-validated .invalid-feedback {
  animation: slideDown 0.35s ease-out forwards;
}
@keyframes slideDown {
  to {
    opacity: 1;
    transform: translateY(0%);
  }
}
.section-contact-illustration-wrapper {
  background: rgba(22, 17, 24, 0.3);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
  border-radius: 6px;
  transform-style: preserve-3d;
}
.section-contact-illustration-wrapper img {
  position: absolute;
  transform: translateZ(8rem);
}

footer {
  height: 3rem;
  color: rgba(219, 219, 219, 0.8352941176);
  font-weight: 400;
  font-size: 0.9rem;
  background-color: rgba(22, 22, 22, 0.9764705882);
  background-image: radial-gradient(at 55% 75%, rgba(18, 18, 18, 0.4705882353) 0, rgba(255, 0, 0, 0) 100%);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}/*# sourceMappingURL=style.css.map */