/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&family=Poppins:wght@400;500;600;700;900&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  /* 
      Change favorite color
      Default: hsl(162, 100%, 40%)
      Orange: hsl(14, 100%, 65%) - Blue: hsl(210, 100%, 70%)
      Pink: hsl(356, 100%, 75%) - Purple: hsl(250, 100%, 75%)

      For more colors visit: https://colors.dopely.top/color-pedia
      -> Choose any color 
      -> click on tab (Color Conversion)
      -> Copy the color mode (HSL)
  */

  --hue: 212;
  --first-color: hsl(var(--hue), 100%, 70%);
  --first-color-alt: hsl(var(--hue), 56%, 35%);
  --title-color: hsl(228, 8%, 95%);
  --text-color: hsl(228, 8%, 65%);
  --body-color: hsl(228, 15%, 20%);
  --container-color: hsl(228, 15%, 15%);
  /*========== Loader Variables ==========*/
  --bg1: hsl(var(--hue), 100%, 70%);
  --bg2: hsl(var(--hue), 56%, 35%);
  --wrm: hsl(228, 8%, 95%);
  ;
  --deg: -12deg;
  --sz: 15vmin;
  --spd: 2.05s;

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --biggest-font-size: 2rem;
  --bigger-font-size: 1.25rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 900;
  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1152px) {
  :root {
    --biggest-font-size: 4rem;
    --bigger-font-size: 2rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

input,
textarea,
button,
body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

@property --deg {
  syntax: '<angle>';
  inherits: false;
  initial-value: -12deg;
}

body {
  background-color: var(--body-color);
  color: var(--text-color);
}

input,
textarea,
button {
  outline: none;
  border: none;
}

h1,
h2,
h3,
h4 {
  color: var(--title-color);
  font-weight: var(--font-medium);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding-block: 5rem 2rem;
}

.section__title,
.section__subtitle {
  text-align: center;
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

.section__title {
  font-size: var(--h1-font-size);
  margin-bottom: 1.5rem;
}

.section__subtitle {
  font-size: var(--small-font-size);
  margin-bottom: .25rem;
}

.section__subtitle span {
  color: var(--first-color);
}

.main {
  overflow: hidden;
  /* For animation ScrollReveal */
}

/*=============== LOADER ==================== */
.loader_wrapper {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--container-color);
  z-index: 9999;
}

.loader {
  width: var(--sz);
  height: var(--sz);
  background: conic-gradient(from var(--deg) at 50% 50%, var(--bg1) 0, var(--wrm) 25deg 50deg, var(--bg1) 51deg 100%);
  clip-path: polygon(0% 0%, 40% 0%, 50% 10%, 60% 0%, 100% 0%, 100% 40%, 90% 50%, 100% 60%, 100% 100%, 60% 100%, 50% 90%, 40% 100%, 0% 100%, 0% 60%, 10% 50%, 0% 40%);
  animation: spin var(--spd) linear 0s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: calc(var(--sz) / 10);
}

.loader:hover {
  animation: spin var(--spd) linear 0s infinite, rotation var(--spd) linear 0s infinite;
}

.loader:before {
  content: "";
  position: absolute;
  width: calc(100% - calc(var(--sz) / 10));
  height: calc(100% - calc(var(--sz) / 10));
  border-radius: calc(var(--sz) / 20);
  background: var(--bg2);
  clip-path: polygon(0% 0%, 38% 0%, 50% 12%, 62% 0%, 100% 0%, 100% 38%, 88% 50%, 100% 62%, 100% 100%, 62% 100%, 50% 88%, 38% 100%, 0% 100%, 0% 62%, 12% 50%, 0% 38%);
}

@keyframes spin {
  0% {
    --deg: -12deg;
  }

  100% {
    --deg: 348deg;
  }
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  width: 100%;
  background-color: var(--container-color);
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  color: var(--title-color);
  font-weight: var(--font-medium);
}

.nav__logo span {
  color: var(--first-color);
}

.nav__close,
.nav__toggle {
  display: flex;
  font-size: 1.25rem;
  color: var(--title-color);
  cursor: pointer;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1023px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    background-color: hsla(0, 0%, 10%, .3);
    width: 75%;
    height: 100%;
    padding: 4.5rem 0 0 3rem;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    /* For Safari */
    transition: right .4s;
  }
}

.nav__list {
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
}

.nav__link {
  color: var(--title-color);
  font-weight: var(--font-medium);
  transition: color .4s;
}

.nav__link:hover {
  color: var(--first-color);
}

.nav__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

/* Show menu */
.show-menu {
  right: 0;
}


/* Add blur to header */
.blur-header {
  background-color: transparent;
}

.blur-header::after {
  content: '';
  position: absolute;
  width: 1000%;
  height: 100%;
  background-color: hsla(0, 0%, 10%, .3);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  top: 0;
  left: 0;
  z-index: -1;
}

/* Active link */
.active-link {
  color: var(--first-color);
}

/*=============== HOME ===============*/
.home {
  background-color: var(--container-color);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.bubble {
  position: relative;
  display: flex;
}

.bubble span {
  position: relative;
  width: 20px;
  height: 20px;
  top: -6rem;
  background: var(--first-color);
  margin: 0 4px;
  border-radius: 50%;
  box-shadow: 0 0 0 10px var(--first-color-alt),
    0 0 50px var(--first-color),
    0 0 100px var(--first-color);
  animation: animate 5s linear infinite;
  animation-delay: calc(90s / var(--i));
}

.bubble span:nth-child(even) {
  background: #ff2d75;
  box-shadow: 0 0 0 10px #ff2d7544,
    0 0 50px #ff2d75,
    0 0 100px #ff2d75;
}

@keyframes animate {
  0% {
    transform: translateY(120vh) scale(0);
  }

  100% {
    transform: translateY(-10vh) scale(1);
  }
}


.home__container {
  padding-top: 2rem;
  row-gap: 2.5rem;
}

.home__content {
  display: grid;
  row-gap: 2rem;
}

.home__data {
  text-align: center;
}

.home__subtitle,
.home__education {
  font-size: var(--bigger-font-size);
}

.home__subtitle span,
.home__title {
  color: var(--first-color);
}

.home__title {
  font-size: var(--bigger-font-size);
  font-weight: var(--font-semi-bold);
}

.home__description {
  margin-block: 1rem 1.5rem;
}

.home__social {
  display: flex;
  justify-content: center;
  column-gap: 1.25rem;
}

.home__social-link {
  display: flex;
  background-color: var(--first-color-alt);
  padding: .5rem;
  color: var(--title-color);
  font-size: 1.5rem;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: transform .4s;

  &:hover {
    transform: translateY(-.25rem);
  }
}

.home__image {
  justify-self: center;
}

.home__blob {
  width: 320px;
  fill: var(--first-color);
  filter: drop-shadow(0 15px 5px hsla(var(--hue), 100%, 40%, .2));
  animation: float 3s ease-in-out infinite;
}

/*=============== ANIMATION ===============*/
@keyframes float {
  0% {
    filter: drop-shadow(0 15px 5px hsla(var(--hue), 100%, 40%, .2));
    transform: translateY(0);
  }

  50% {
    filter: drop-shadow(0 25px 5px hsla(var(--hue), 100%, 40%, .1));
    transform: translateY(-0.75rem);
  }

  100% {
    filter: drop-shadow(0 15px 5px hsla(var(--hue), 100%, 40%, .2));
    transform: translateY();
  }
}

/*=============== BUTTON ===============*/

.button {
  position: relative;
  display: inline-block;
  padding: 1rem 1.75rem;
  color: var(--first-color);
  font-weight: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: 4px;
  transition: .5s;
  overflow: hidden;

  &:hover {
    background-color: var(--first-color);
    color: var(--body-color);
    box-shadow: 0 0 5px var(--first-color),
      0 0 25px var(--first-color),
      0 0 50px var(--first-color),
      0 0 200px var(--first-color);
    -webkit-box-reflect: below 1px linear-gradient(transparent, #0005);
  }
}

.button span {
  position: absolute;
  display: block;
}

.button span:nth-child(1) {
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--first-color));
  animation: move1 1s infinite;
}

@keyframes move1 {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.button span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--first-color));
  animation: move2 1s infinite;
  animation-delay: .25s;
}

@keyframes move2 {
  0% {
    top: -100%;
  }

  100% {
    top: 100%;
  }
}

.button span:nth-child(3) {
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(270deg, transparent, var(--first-color));
  animation: move3 1s infinite;
  animation-delay: .50s;
}

@keyframes move3 {
  0% {
    right: -100%;
  }

  100% {
    right: 100%;
  }
}

.button span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(360deg, transparent, var(--first-color));
  animation: move4 1s infinite;
  animation-delay: .75s;
}

@keyframes move4 {
  0% {
    bottom: -100%;
  }

  100% {
    bottom: 100%;
  }
}

.button.loading {
  pointer-events: none;
  color: transparent;
}

.button.loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 3px solid transparent;
  border-top-color: var(--body-color);
  border-radius: 50%;
  animation: button-spin 0.8s linear infinite;
}

@keyframes button-spin {
  to {
    transform: rotate(360deg);
  }
}


/*=============== ABOUT ===============*/

.about__container {
  row-gap: 2.5rem;
}

.about__data {
  text-align: center;
}

.about__description {
  margin-bottom: 2rem;
}

.about__image {
  justify-self: center;
}

.about__blob {
  width: 320px;
  animation: float 3s linear infinite;
}

.about__blob path {
  stroke: var(--first-color);
}

/*=============== SKILLS ===============*/
.skills {
  background-color: var(--container-color);
}

.skills_container {
  padding-bottom: 2rem;
  row-gap: 3.5rem;
}

.skills_data {
  text-align: center;
}

.skills_description {
  margin-bottom: 2rem;
}

.skills_content,
.skills_group {
  display: grid;
}

.skill_box {
  position: relative;
  max-width: 600px;
  background: var(--body-color);
  margin: 0 1.5rem;
  padding: 10px 35px;
  border-radius: 7px;
  box-shadow: inset 1px 1px 12px 0px #000000;
}

.skill_box .skill-box {
  width: 100%;
  margin: 25px 0;
}

.skill-box .title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--title-color);
}

.skill-box .skill-bar {
  height: 8px;
  width: 100%;
  border-radius: 6px;
  margin-top: 6px;
  background: rgba(0, 0, 0, 0.2);
}

.skill-bar .skill-per {
  position: relative;
  display: block;
  height: 100%;
  width: 90%;
  border-radius: 6px;
  background: var(--first-color);
  animation: progress 1s ease-in-out forwards;
  animation-delay: 1s;
  opacity: 0;
}

.skill-per.hundred {
  width: 100%;
  animation-delay: 2s;
}

.skill-per.eighty {
  width: 80%;
  animation-delay: 1.1s;
}

.skill-per.seventy {
  width: 70%;
  animation-delay: 1.2s;
}

.skill-per.sixty {
  width: 60%;
  animation-delay: 1.3s;
}

.skill-per.fifty {
  width: 50%;
  animation-delay: 1.4s;
}

@keyframes progress {
  0% {
    width: 0;
    opacity: 0;
  }

  100% {
    opacity: 1;
  }

}

.skill-per .tooltip {
  position: absolute;
  right: -14px;
  top: -28px;
  font-size: 9px;
  font-weight: 500;
  color: var(--title-color);
  padding: 2px 6px;
  border-radius: 3px;
  background-color: var(--first-color);
  z-index: 1;
}

.tooltip::before {
  content: '';
  position: absolute;
  left: 50%;
  z-index: -1;
  bottom: -2px;
  height: 10px;
  width: 10px;
  background-color: var(--first-color);
  transform: translateX(-50%) rotate(45deg);
}


/*=============== SERVICES ===============*/
.services_container {
  row-gap: 2rem;
  padding-block: 1rem;
}

.services_card {
  text-align: center;
  background-color: var(--container-color);
  padding: 3rem 1.25rem;
  border-radius: 1rem;
  border: 2px solid var(--container-color);
  transition: border .4s;
}

.services_icon {
  display: block;
  font-size: 4rem;
  color: var(--first-color);
  margin-bottom: .75rem;
}

.services_title {
  font-size: var(--h2-font-size);
  margin-bottom: 1.5rem;
}

.services_card:hover {
  border: 2px solid var(--first-color);
}

/*=============== PROJECTS ===============*/
.projects {
  background-color: var(--container-color);
}

.projects_container {
  row-gap: 2rem;
  justify-content: center;
  padding-block: 1rem;
}

.projects_card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}

.projects_img {
  width: 100%;
  height: 100%;
}

.projects_modal {
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #00000033,
      hsla(210, 100%, 70%, 0.261));
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: bottom .4s;
}

.projects_subtitle,
.projects_button {
  color: var(--title-color);
  font-size: var(--small-font-size);
}

.projects_subtitle {
  display: block;
  mask-border: .25rem;
}

.projects_title {
  font-size: var(--h2-font-size);
  margin-bottom: .75rem;
}

.projects_button {
  display: flex;
  align-items: center;
  column-gap: .5rem;
  font-weight: var(--font-medium);
}

.projects_button i {
  font-size: 1.25rem;
}

.projects_card:hover .projects_modal {
  bottom: 0;
}

/*=============== CONTACT ===============*/
.contact_container {
  padding-top: 1rem;
}

.contact_form,
.contact_group {
  display: grid;
  row-gap: 1rem;
  position: relative;
}

.contact_group {
  display: flex;
  flex-direction: column;
}


.contact_input {
  padding: 1rem 1.25rem;
  border-radius: .5rem;
  background-color: var(--container-color);
  color: var(--title-color);
  transition: .6s ease;
}

.contact_input:valid,
.contact_input:focus {
  border: 1px solid var(--first-color);
  color: var(--title-color);
  background: transparent;
}

.contact_input-label {
  position: absolute;
  left: 0;
  padding: 1rem;
  pointer-events: none;
  font-size: var(--normal-font-size);
  color: hsla(0, 0%, 100%, 0.251);
  transition: .5s ease;
}

.contact_input:valid+.contact_input-label,
.contact_input:focus+.contact_input-label {
  color: var(--first-color);
  transform: translate(0.2rem, -1.1rem) scale(0.8);
  background: var(--body-color);
  padding: 0.15rem;
  letter-spacing: .1rem;
}

.contact_form textarea {
  height: 11rem;
  resize: none;
  margin-bottom: 2rem;
}

.contact_button {
  justify-self: center;
  cursor: pointer;
  background-color: transparent;
}

.contact_message {
  position: absolute;
  left: 0;
  bottom: 4.5rem;
  font-size: var(--small-font-size);
  color: var(--title-color);
}

/*=============== FOOTER ===============*/
.footer {
  background-color: var(--container-color);
  padding-block: 3.5rem 2rem;
}

.footer_container {
  row-gap: 2rem;
  text-align: center;
}

.footer_title {
  font-size: var(--h1-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: .25rem;
}

.footer_title span {
  color: var(--first-color);
}

.footer_education {
  font-size: var(--normal-font-size);
}

.footer_social {
  display: flex;
  justify-content: center;
  column-gap: 1.25rem;
}

.footer_social-link {
  display: flex;
  background-color: var(--first-color-alt);
  padding: .5rem;
  color: var(--title-color);
  font-size: 1.5rem;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: transform .4s;

  &:hover {
    transform: translateY(-.25rem);
  }
}

.footer_copy {
  font-size: var(--smaller-font-size);
  margin-top: 2rem;

}

/*=============== SCROLL BAR & SELECTION ===============*/
::selection {
  background-color: var(--first-color);
  color: var(--title-color);
}

::-webkit-scrollbar {
  width: .6rem;
  border-radius: .5rem;
  background-color: hsla(228, 12%, 25%);
}

::-webkit-scrollbar-thumb {
  background-color: hsla(228, 8%, 35%);
  border-radius: .5rem;
}

::-webkit-scrollbar-thumb:hover {
  background-color: hsla(228, 8%, 45%);
}

/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -50%;
  background-color: var(--body-color);
  padding: 6px;
  display: inline-flex;
  border-radius: .25rem;
  color: var(--first-color);
  font-size: 1.25rem;
  box-shadow: 0 4px 12px hsla(228, 15%, 8%, .4);
  opacity: 0.4;
  z-index: var(--z-tooltip);
  transition: .4s;

  &:hover {
    transform: translateY(-.25rem);
    opacity: 1;
  }
}

/* Show Scroll Up */
.show-scroll {
  bottom: 3rem;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width:320px) {
  .container {
    margin-inline: 1rem;
  }

  .skills_box {
    grid-template-columns: max-content;
    justify-content: center;
  }

  .services_card {
    padding-block: 1.5rem;
  }

  .contact_input {
    padding: 1rem;
  }
}

/* For medium devices */
@media screen and (min-width: 576px) {

  .home__container,
  .about__container,
  .skills_container,
  .services_container,
  .projects_container,
  .contact_container {
    grid-template-columns: 360px;
    justify-content: center;
  }
}

@media screen and (min-width: 768px) {
  .nav__menu {
    width: 55%;
  }

  .home__container,
  .about__container,
  .skills_container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .home__data,
  .about__data,
  .skills_data,
  :is(.about__data, .skills_data) :is(.section__subtitle, .section__title) {
    text-align: initial;
  }

  .home__social {
    justify-content: initial;
  }

  .home__blob,
  .about__blob {
    width: 400px;
  }

  .about__data {
    order: 1;
  }

  .services_container,
  .projects_container {
    grid-template-columns: repeat(2, 352px);
  }
}

/* For large devices */
@media screen and (min-width: 1023px) {
  .section {
    padding-block: 7rem 2rem;
  }

  .section__subtitle {
    font-size: var(--normal-font-size);
  }

  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }

  .nav__close,
  .nav__toggle {
    display: none;
  }

  .nav__list {
    flex-direction: row;
    column-gap: 3rem;
  }

  .nav__menu {
    width: initial;
  }

  .blur-header::after {
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
  }
}

@media screen and (min-width: 1152px) {
  .container {
    margin-inline: auto;
  }

  .home__container {
    grid-template-columns: 455px 550px;
    column-gap: 7rem;
    padding-block: 2rem 3rem;
  }

  .home__blob {
    width: 450px;
  }

  .home__content {
    row-gap: 2.5rem;
  }

  .home__description {
    margin-block: 1.5rem 2.5rem;
  }

  .home__social {
    column-gap: 1.5rem;
  }

  .about__container {
    grid-template-columns: 550px 460px;
    column-gap: 4.5rem;
    padding-block: 1rem;
  }

  .about__blob {
    width: 450px;
  }

  .about__description {
    margin-bottom: 3rem;
  }

  .skills_container {
    grid-template-columns: 340px 425px;
    column-gap: 10rem;
    padding-bottom: 4rem;
  }

  .skills_description {
    margin-bottom: 3rem;
  }

  .skills_content {
    column-gap: 8rem;
  }

  .skills_group {
    row-gap: 1.5rem;
  }

  .skills_item {
    font-size: var(--h3-font-size);
  }

  .services_container {
    grid-template-columns: repeat(3, 352px);
    padding-block: 1.5rem 4rem;
  }

  .services_card {
    padding: 3.5rem 2rem;
  }

  .projects_container {
    grid-template-columns: repeat(3, 350px);
    row-gap: 3rem;
    padding-block: 2.5rem 4rem;
  }

  .projects_button {
    font-size: var(--normal-font-size);
  }

  .contact_container {
    grid-template-columns: 680px;
    padding-block: 2.5rem 2rem;
  }

  .contact_form {
    row-gap: 1.5rem;
  }

  .contact_group {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.5rem;
  }

  .contact_input {
    padding: 1.5rem;
  }

  .contact_form textarea {
    height: 12rem;
  }

  .footer {
    padding-block: 4.5rem 4rem;
  }

  .footer_container {
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    text-align: initial;
  }

  .footer_title {
    font-size: var(--bigger-font-size);
  }

  .footer_social {
    column-gap: 1.5rem;
  }

  .footer_copy {
    margin: 0;
    justify-self: flex-end;
  }

  .scrollup {
    right: 3rem;
  }
}