@import"https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap";
:root {
    --header-height: 3rem;
    --hue: 0;
    --sat: 0%;
    --title-color: hsl(var(--hue), var(--sat), 20%);
    --title-color-dark: hsl(var(--hue), var(--sat), 0%);
    --text-color: hsl(var(--hue), var(--sat), 46%);
    --body-color: hsl(var(--hue), var(--sat), 98%);
    --container-color: #fff;
    --body-font: "Poppins", sans-serif;
    --big-font-size: 2.5rem;
    --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;
    --tiny-font-size: .625rem;
    --font-normal: 400;
    --font-medium: 500;
    --font-semi-bold: 600;
    --mb-0-25: .25rem;
    --mb-0-5: .5rem;
    --mb-0-75: .75rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
    --mb-3: 3rem;
    --z-tooltip: 10;
    --z-fixed: 100;
    --z-modal: 1000
}

[data-theme=dark] {
    --hue: 0;
    --sat: 0%;
    --title-color: hsl(var(--hue), var(--sat), 80%);
    --title-color-dark: hsl(var(--hue), var(--sat), 100%);
    --text-color: hsl(var(--hue), var(--sat), 74%);
    --body-color: hsl(var(--hue), var(--sat), 12%);
    --container-color: hsl(var(--hue), var(--sat), 18%)
}

@media screen and (max-width: 992px) {
    :root {
        --big-font-size: 2.75rem;
        --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
    }
}

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

html {
    scroll-behavior: smooth;
    height: 100vh;
    scroll-snap-type: y mandatory;
    overflow-y: auto;
    scrollbar-width: none
}

html:-webkit-scrollbar {
    display: none
}

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

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

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

ul {
    list-style: none
}

a {
    text-decoration: none
}

button {
    cursor: pointer;
    border: none;
    outline: none
}

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

.home__description {
    margin-bottom: 20px; /* Adjust the value for more or less space */
  }
  
.home__scroll {
    margin-top: 20px; /* Adjust the value for more or less space */
  }
  

.section {
    padding: 5rem 0 2rem;
    scroll-snap-align: start
}

.section__title {
    font-size: var(--h1-font-size);
    color: var(--title-color)
}

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

.section__title,
.section__subtitle {
    text-align: center
}

.container {
    max-width: 968px;
    margin-left: auto;
    margin-right: auto
}

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

.button {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    font-weight: var(--font-medium)
}

.button:hover {
    background-color: #000000d1
}

.button__icon {
    margin-left: var(--mb-0-5);
    color: #fff
}

.button--flex {
    display: inline-flex;
    align-items: center
}

@media screen and (max-width: 992px) {
    .container {
        margin-left: var(--mb-1-5);
        margin-right: var(--mb-1-5)
    }
    .button__icon {
        width: 22px;
        height: 22px
    }
}

@media screen and (max-width: 768px) {
    body {
        margin: 0 0 var(--header-height) 0
    }
    .section {
        padding: 2rem 0 4rem
    }
    .section__subtitle {
        margin-bottom: var(--mb-3)
    }
}

@media screen and (max-width: 350px) {
    :root {
        --big-font-size: 2.25rem
    }
    .container {
        margin-left: var(--mb-1);
        margin-right: var(--mb-1)
    }
}

.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-fixed);
    background-color: var(--container-color)
}

.nav {
    height: calc(var(--header-height) + 1rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 1rem
}

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

.nav__list {
    display: flex;
    column-gap: 2rem;
    position: relative
}

.nav__link {
    color: var(--title-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: var(--small-font-size);
    font-weight: var(--font-medium);
    transition: .3s
}

.nav__icon,
.nav__close,
.nav__toggle {
    display: none
}

.active-link,
.nav-link:hover {
    color: var(--title-color-dark)
}

.scroll-header {
    box-shadow: 0 -1px 4px #00000026
}

@media screen and (max-width: 768px) {
    .header {
        top: initial;
        bottom: 0
    }
    .nav {
        height: var(--header-height)
    }
    .nav__menu {
        position: fixed;
        bottom: -100%;
        left: 0;
        width: 100%;
        background-color: var(--body-color);
        padding: 2rem 1.5rem 3rem;
        box-shadow: 0 -1px 4px #00000026;
        border-radius: 1.5rem 1.5rem 0 0;
        transition: .3s
    }
    .show-menu {
        bottom: 0
    }
    .nav__list {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 2rem
    }
    .nav__icon {
        display: inline-block;
        font-size: 1.2rem;
        transition: transform .6s ease, color .6s ease, opacity .1s ease-out
    }
    .nav__icon:hover {
        color: var(--title-color-dark);
        transform: scale(1.3)
    }
    .nav__tooltip {
        position: absolute;
        padding: .5rem;
        top: -2%;
        border-radius: .3rem;
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transition: opacity .6s ease-out, visibility .1s ease;
        font-size: .8rem;
        z-index: var(--z-fixed)
    }
    .nav__link:hover .nav__tooltip {
        opacity: 1;
        visibility: visible
    }
    .nav__link:hover .nav__icon {
        opacity: 0
    }
    .nav__close {
        position: absolute;
        left: 1.3rem;
        bottom: .5rem;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--title-color)
    }
    .nav__close:hover {
        color: var(--title-color-dark)
    }
    .nav__toggle {
        font-size: 1.1rem;
        cursor: pointer
    }
    .nav__icon,
    .nav__close,
    .nav__toggle {
        display: block
    }
}

@media screen and (max-width: 350px) {
    .nav__menu {
        padding: 2rem .25rem 4rem
    }
    .nav__list {
        column-gap: 0
    }
}

.dark_mode {
    margin-top: -20px;
    margin-left: 10px
}

.dark_mode_label {
    width: 65px;
    height: 30px;
    position: relative;
    display: block;
    background: #ebebeb;
    border-radius: 200px;
    box-shadow: inset 0 5px 15px #0006, inset 0 -5px 15px #fff6;
    cursor: pointer;
    transition: .3s
}

.dark_mode_label:after {
    content: "";
    width: 25px;
    height: 25px;
    position: absolute;
    top: 3px;
    left: 3px;
    background: linear-gradient(180deg, #e5e3df, #e0ddda);
    border-radius: 180px;
    box-shadow: 0 5px 10px #0003;
    transition: .3s
}

.dark_mode_input {
    width: 0;
    height: 0;
    visibility: hidden
}

.dark_mode_input:checked+.dark_mode_label {
    background: #242424
}

.dark_mode_input:checked+.dark_mode_label:after {
    left: 62px;
    transform: translate(-100%);
    background: linear-gradient(180deg, #777, #3a3a3a)
}

.dark_mode_label:active:after {
    width: 30px
}

.dark_mode_label img {
    position: absolute;
    width: 20px;
    top: 5px;
    z-index: 100
}

.dark_mode_label img.sun {
    left: 5px;
    fill: #fff;
    transition: .3s
}

.dark_mode_label img.moon {
    left: 40px;
    fill: #7e7e7e;
    transition: .3s
}

.dark_mode_input:checked+.dark_mode_label img.sun {
    fill: #7e7e7e
}

.dark_mode_input:checked+.dark_mode_label img.moon {
    fill: #fff
}

.home__container {
    row-gap: 7rem
}

.home__content {
    grid-template-columns: 120px repeat(2, 1fr);
    padding-top: 5.5rem;
    column-gap: 2rem;
    align-items: center
}

.home__social {
    display: grid;
    grid-template-columns: max-content;
    row-gap: 1rem
}

.home__social-icon {
    position: relative;
    font-size: 1.25rem;
    display: inline-block;
    color: var(--title-color);
    transition: transform .3s ease, color .3s ease
}

.home__social-icon:hover {
    color: var(--title-color-dark);
    transform: scale(1.3)
}

.home__social-tooltip {
    color: var(--title-color);
    position: absolute;
    font-weight: var(--font-medium);
    left: 50%;
    transform: translate(10%);
    padding: .5rem;
    border-radius: .3rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
    font-size: .5rem
}

.home__social-icon:hover .home__social-tooltip {
    opacity: 1;
    visibility: visible
}

.home__title {
    font-size: var(--big-font-size);
    margin-bottom: var(--mb-0-25)
}

.home__hand {
    width: 38px;
    height: 38px;
    margin-left: .4rem
}

.home__subtitle {
    position: relative;
    font-size: var(--h3-font-size);
    padding-left: 5.4rem;
    font-weight: var(--font-medium);
    color: var(--title-color);
    font-size: 1.2rem
}

.home__subtitle:before {
    content: " ";
    position: absolute;
    width: 70px;
    height: 1px;
    background-color: var(--title-color);
    left: 0;
    top: 1rem
}

.home__description {
    margin-top: var(--mb-1);
    max-width: 400px;
    margin-bottom: var(--mb-2);
    font-size: var(--small-font-size)
}

.home__img {
    background: url(/assets/profile-CK2ZJPGR.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    box-shadow: inset 0 0 0 9px #e1e1e14d;
    order: 1;
    justify-self: center;
    width: 300px;
    height: 300px;
    animation: profile_animate 8s ease-in-out infinite 1s
}

@keyframes profile_animate {
    0% {
        border-radius: 60% 40% 30% 70%/60% 30% 70% 40%
    }
    50% {
        border-radius: 30% 60% 70% 40%/50% 60% 30%
    }
    to {
        border-radius: 60% 40% 30% 70%/60% 30% 70% 40%
    }
}

.home__scroll {
    margin-left: 9.25rem
}

.home__scroll-name {
    color: var(--text-color);
    font-weight: var(--font-medium);
    margin-right: var(--mb-0-25);
    margin-left: 2px
}

.home__scroll-arrow {
    font-size: 1.25rem;
    color: var(--title-color);
    animation: scroll 2s ease infinite
}

@media screen and (max-width: 992px) {
    .home__content {
        grid-template-columns: 100px repeat(2, 1fr);
        column-gap: 1.25rem
    }
    .home__hand {
        width: 26px;
        height: 26px
    }
    .home__subtitle {
        padding-left: 3.75rem;
        margin-bottom: var(--mb-1)
    }
    .home__subtitle:before {
        width: 42px;
        top: .8rem
    }
    .home__description {
        max-width: 400px;
        margin-bottom: var(--mb-2)
    }
    .home__img {
        width: 250px;
        height: 250px;
        box-shadow: inset 0 0 0 8px #e1e1e14d
    }
    .home__scroll {
        margin-top: 7.5rem
    }
}

@media screen and (max-width: 768px) {
    .home__content {
        grid-template-columns: .5fr 3fr;
        padding-top: 3.5rem
    }
    .home__img {
        order: initial;
        justify-self: initial;
        width: 200px;
        height: 200px;
        box-shadow: inset 0 0 0 6px #e1e1e14d
    }
    .home__title {
        font-size: 2.2rem
    }
    .home__data {
        grid-column: 1/3
    }
    .home__scroll {
        display: none
    }
}

@media screen and (max-width: 372px) {
    .home__img {
        width: 180px;
        height: 180px
    }
    .home__title {
        font-size: 1.8rem
    }
    .home__scroll {
        display: none
    }
}

@keyframes scroll {
    0% {
        transform: translateY(0)
    }
    30% {
        transform: translateY(.5rem)
    }
}

.about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    column-gap: 4rem
}

.about__img {
    width: 350px;
    height: 350px;
    border-radius: 1.5rem;
    justify-self: center
}

.about__box {
    background-color: var(--container-color);
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: .75rem;
    text-align: center;
    padding: 1rem 1.25rem
}

.about__icon {
    font-size: 1.5rem;
    color: var(--title-color);
    margin-bottom: var(--mb-0-5)
}

.about__description {
    padding: 0 4rem 0 0;
    margin-bottom: var(--mb-2-5);
    font-size: var(--small-font-size)
}

@media screen and (max-width: 992px) {
    .about__container {
        grid-template-columns: 1fr;
        row-gap: 2.5rem
    }
    .about__img {
        width: 220px;
        height: 220px
    }
    .about__box {
        padding: .75rem .5rem
    }
    .about__data {
        text-align: center
    }
    .about__description {
        padding: .5rem;
        margin-bottom: 2rem
    }
}

@media screen and (max-width: 576px) {
    .about__info {
        grid-template-columns: repeat(3, 1fr)
    }
    .about__description {
        padding: 0
    }
}

.skills__container {
    grid-template-columns: repeat(2, 350px);
    column-gap: 3rem;
    justify-content: center
}

.skills__content {
    background-color: var(--container-color);
    border: 1px solid rgba(0, 0, 0, .1);
    padding: 2rem 4rem;
    border-radius: 1.25rem
}

.skills__title {
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
    text-align: center;
    margin-bottom: var(--mb-1-5)
}

.skills__box {
    display: flex;
    justify-content: center;
    column-gap: 2.5rem
}

.skills__group {
    display: grid;
    align-items: flex-start;
    row-gap: 1rem
}

.skills__data {
    display: flex;
    align-items: center;
    column-gap: .5rem
}

.skills .bx-bage-check {
    font-size: 1rem;
    color: var(--title-color)
}

.skills__name {
    font-size: var(--smaller-font-size);
    font-weight: var(--font-medium);
    line-height: 18px
}

.skills_icon {
    font-size: 1.5rem;
    transition: transform .3s ease, color .3s ease;
    color: var(--title-color-dark)
}

.skills_icon:hover {
    transform: scale(1.3)
}

@media screen and (max-width: 992px) {
    .skills__container {
        grid-template-columns: max-content;
        row-gap: 2rem
    }
    .skills__name {
        font-size: var(--small-font-size)
    }
}

@media screen and (max-width: 576px) {
    .skills__container {
        grid-template-columns: 1fr
    }
    .skills__content {
        padding: 1.5rem
    }
}

@media screen and (max-width: 350px) {
    .skills__box {
        column-gap: 1.25rem
    }
    .skills__name {
        font-size: var(--small-font-size)
    }
}

.feats__container {
    grid-template-columns: repeat(3, 270px);
    justify-content: center;
    gap: 1.875rem;
    margin-bottom: 2rem
}

.feats__content {
    background-color: var(--container-color);
    border: 1px solid rgba(0, 0, 0, .1);
    padding: 2.5rem 1.25rem 1.875rem;
    text-align: center;
    border-radius: 1.25rem
}

.icon__box {
    border: 1px solid rgba(0, 0, 0, .1);
    width: 82px;
    height: 82px;
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom: 1.25rem;
    position: relative;
    display: flex
}

.feats__icon {
    width: 32px;
    margin: auto
}

.feats__dot {
    position: absolute;
    left: 0%;
    top: 0%;
    width: 100%;
    height: 100%;
    animation: service-dot 2s linear infinite;
    animation-play-state: paused
}

.feats__content:hover .feats__dot {
    animation-play-state: running
}

@keyframes service-dot {
    0% {
        transform: rotate(0)
    }
    to {
        transform: rotate(1turn)
    }
}

.feats__description {
    padding: 1rem;
    font-size: var(--tiny-font-size)
}

.dot {
    width: 13px;
    height: 13px;
    background-color: var(--title-color);
    border-radius: 50%;
    position: absolute;
    top: 0%;
    left: .9rem
}

.feats__title {
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
    text-align: center
}

@media screen and (max-width: 992px) {
    .feats__container {
        grid-template-columns: repeat(3, 218px)
    }
}

@media screen and (max-width: 768px) {
    .feats__container {
        grid-template-columns: repeat(2, 1fr)
    }
    .feats__content {
        padding: 1.5rem .5rem 1.25rem 1.5rem
    }
}

@media screen and (max-width: 350px) {
    .feats__container {
        grid-template-columns: 1fr
    }
}

.qualification__container {
    max-width: 768px;
    margin-top: 2rem;
}

.qualification__tabs {
    display: flex;
    justify-content: center;
    margin-bottom: var(--mb-2)
}

.qualification__button {
    font-size: var(--h3-font-size);
    font-weight: var(--font-medium);
    color: var(--title-color);
    margin: 0 var(--mb-1);
    cursor: pointer
}

.qualification__button:hover {
    color: var(--title-color-dark)
}

.qualification__icon {
    font-size: 1.8rem;
    margin-right: var(--mb-0-25);
    transition: transform .3s ease, color .3s ease
}

.qualification__icon:hover {
    transform: scale(1.3)
}

.qualification__active {
    color: var(--title-color-dark)
}

.qualification__sections {
    display: grid;
    grid-template-columns: .5fr;
    justify-content: center
}

.qualification__content {
    display: none
}

.qualification__content-active {
    display: block
}

.qualification__data {
    display: grid;
    grid-template-columns: 1fr max-content 1fr;
    column-gap: 1.5rem
}

.qualification__title {
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium)
}

.qualification__subtitle {
    display: inline-block;
    font-size: var(--small-font-size);
    margin-bottom: var(--mb-1)
}

.qualification__calendar {
    font-size: var(--small-font-size)
}

.qualification__rounder {
    display: inline-block;
    width: 13px;
    height: 13px;
    background-color: var(--text-color);
    border-radius: 50%
}

.qualification__line {
    display: block;
    width: 1px;
    height: 100%;
    background-color: var(--text-color);
    transform: translate(6px, -7px)
}

@media screen and (max-width: 992px) {
    .qualification__container {
        margin-left: auto;
        margin-right: auto
    }
}

@media screen and (max-width: 768px) {
    .qualification__container {
        margin-left: var(--mb-1-5);
        margin-right: var(--mb-1-5)
    }
    .qualification__subtitle {
        font-size: var(--smaller-font-size)
    }
    .qualification__calendar {
        font-size: var(--tiny-font-size)
    }
}

@media screen and (max-width: 576px) {
    .qualification__sections {
        grid-template-columns: initial
    }
    .qualification__button {
        margin: 0 var(--mb-0-75)
    }
}

@media screen and (max-width: 350px) {
    .qualification__data {
        gap: .5rem
    }
}

.work__container {
    grid-template-columns: repeat(3, 270px);
    justify-content: center;
    align-items: center;
    gap: 1.875rem
}

.work__filters {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: .75rem;
    margin-bottom: var(--mb-2)
}

.work__item {
    background-color: transparent;
    cursor: pointer;
    color: var(--title-color);
    padding: .25rem .75rem;
    font-weight: var(--font-medium);
    border-radius: .5rem;
    text-transform: capitalize
}

.work__item:hover {
    background-color: var(--title-color);
    color: var(--container-color)
}

.active-work {
    color: var(--title-color-dark)
}

.project__card {
    background-color: var(--container-color);
    border: 1px solid rgba(0, 0, 0, .1);
    justify-content: center;
    border-radius: 1rem;
    box-shadow: 0 1px 4px #00000024;
    height: 350px
}

.project__data {
    align-items: center;
    padding: 0 1rem 1rem
}

.project__img {
    object-fit: cover;
    border-radius: 1rem 1rem 0 0;
    box-shadow: 0 1px 4px #00000024
}

.project__title {
    font-size: var(--small-font-size);
    font-weight: var(--font-medium);
    margin-bottom: .4rem;
    text-align: justify
}

.project__description {
    text-align: start;
    font-size: var(--smaller-font-size);
    margin-bottom: .3rem
}

.tags {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: .2rem
}

.tags li {
    display: inline;
    margin-right: .6rem;
    margin-bottom: .3rem;
    box-shadow: 0 1px 4px #00000024;
    padding: .3rem;
    border-radius: .2rem;
    font-size: var(--tiny-font-size);
    color: var(--title-color)
}

.tags li:hover {
    background-color: var(--title-color);
    color: var(--container-color)
}

@media screen and (max-width: 992px) {
    .work__container {
        grid-template-columns: repeat(3, 218px)
    }
}

@media screen and (max-width: 768px) {
    .work__container {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media screen and (max-width: 350px) {
    .work__container {
        grid-template-columns: 1fr
    }
}

.contact__container {
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    column-gap: 6rem;
    padding-bottom: 3rem
}

.contact__info {
    display: grid;
    row-gap: 1rem;
    grid-template-columns: 300px
}

.contact__card {
    background-color: var(--container-color);
    border: 1px solid rgba(0, 0, 0, .1);
    padding: 1rem;
    border-radius: .75rem;
    text-align: center
}

.contact__card-icon {
    font-size: 2rem;
    color: var(--title-color);
    margin-bottom: var(--mb-0-25);
    transition: transform .3s ease, color .3s ease;
    color: var(--title-color-dark)
}

.contact__card-icon:hover {
    transform: scale(1.3)
}

.contact__card-title,
.contact__card-data {
    font-size: var(--smaller-font-size)
}

.contact__card-title {
    font-weight: var(--font-medium)
}

.contact__card-data {
    display: block
}

.contact__form {
    width: 360px
}

.contact__form-div {
    position: relative;
    margin-bottom: var(--mb-2);
    height: 3rem
}

.contact__form-input {
    width: 100%;
    height: 100%;
    border: 2px solid rgba(0, 0, 0, .3);
    background: none;
    color: var(--text-color);
    outline: none;
    border-radius: 1.5rem;
    padding: 1.5rem;
    font-size: var(--smaller-font-size)
}

.contact__form-area {
    height: 6.5rem
}

.contact__form-area textarea {
    resize: none
}

.contact__card-data {
    color: var(--text-color)
}

@media screen and (max-width: 992px) {
    .contact__container {
        column-gap: 3rem
    }
}

@media screen and (max-width: 768px) {
    .contact__container {
        grid-template-columns: 1fr;
        row-gap: 3rem
    }
    .contact__info {
        justify-content: center
    }
    .contact__form {
        margin: 0 auto
    }
}

@media screen and (max-width: 576px) {
    .contact__info {
        grid-template-columns: 1fr
    }
    .contact__form {
        width: 100%
    }
}

.footer {
    background-color: var(--container-color);
    border-top: 1px solid rgba(0, 0, 0, .1);
    padding: 0
}

.footer__container {
    padding: 2rem 0 4rem
}

.footer__title,
.footer__link {
    color: var(--title-color)
}

.footer__title {
    text-align: center;
    margin-bottom: var(--mb-2)
}

.footer__title:hover {
    color: var(--title-color-dark)
}

.footer__list {
    display: flex;
    justify-content: center;
    column-gap: 1.5rem;
    margin-bottom: var(--mb-2)
}

.footer__social {
    display: flex;
    justify-content: center;
    column-gap: 1.125rem
}

.footer__social-link {
    background-color: var(--title-color);
    color: var(--container-color);
    font-size: 1.25rem;
    padding: .4rem;
    border-radius: .5rem;
    display: inline-flex
}

.footer__social-link:hover {
    background-color: var(--title-color-dark)
}

.footer__copy {
    display: block;
    margin-top: 1.5rem;
    color: var(--title-color);
    text-align: center;
    font-size: var(--smaller-font-size)
}

@media screen and (max-width: 992px) {
    .footer__social-link {
        padding: .25rem;
        border-radius: .25rem;
        font-size: 1rem
    }
}

.scrollup {
    position: fixed;
    right: 2.5rem;
    bottom: -20%;
    background-color: var(--title-color);
    opacity: .8;
    padding: .3rem .5rem;
    border-radius: .4rem;
    z-index: var(--z-tooltip);
    transition: .4s
}

.scrollup:hover {
    background-color: var(--title-color-dark);
    opacity: 1
}

.scrollup__icon {
    font-size: 1.5rem;
    color: var(--container-color)
}

.show-scroll {
    bottom: 3rem
}

@media screen and (max-width: 992px) {
    .scrollup {
        right: 1.5rem;
        padding: .25rem .4rem
    }
    .scrollup__icon {
        font-size: 1.25rem
    }
}

@media screen and (max-width: 768px) {
    .scrollup {
        bottom: 6rem;
        display: none
    }
}

@media screen and (max-width: 350px) {
    .scrollup {
        right: 1rem
    }
}