/* Effetto combinato animate-btt + fadeblur */
/* Effetto combinato animate-btt + fadeblur: tutte le proprietà transizionano insieme */
.animate-btt.fadeblur,
.animate-btt.fadeblur.show,
.animate-btt,
.animate-btt.show,
.fadeblur,
.fadeblur.show {
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}

.animate-btt.fadeblur {
  opacity: 0;
  filter: blur(15px);
  transform: translateY(30px);
}
.animate-btt.fadeblur.show {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0);
}
/* FadeBlur: da usare insieme a animate-ttb, animate-btt, ecc. */
.fadeblur {
  filter: blur(10px);
  opacity: 0;
  transition: filter 0.4s ease, opacity 0.4s ease;
}
.fadeblur.show {
  filter: blur(0px);
  opacity: 1;
}
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&family=Outfit:wght@100..900&display=swap');

.animate-ttb,
.animate-btt {
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.animate-ttb {
  transform: translateY(-30px);
}

.animate-btt {
  transform: translateY(30px);
}

.animate-ttb.show,
.animate-btt.show {
  opacity: 1;
  transform: translateY(0);
}

.animate-scroll-ttb {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.animate-scroll-btt {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.animate-scroll-ltr {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.animate-scroll-rtl {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* show specifici */
.animate-scroll-ttb.show {
  opacity: 1;
  transform: translateY(0);
}

.animate-scroll-btt.show {
  opacity: 1;
  transform: translateY(0);
}

.animate-scroll-ltr.show {
  opacity: 1;
  transform: translateX(0);
}

.animate-scroll-rtl.show {
  opacity: 1;
  transform: translateX(0);
}

/* lista */
.animate-scroll-list {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.animate-scroll-list.show {
  opacity: 1;
  transform: translateY(0);
}

.typewriter {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: start;
}

#typewriter-caret {
  display: inline-block;
  margin-left: 2px;
  animation: fadeCaret 1s forwards infinite;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
}

@keyframes fadeCaret {
  0% {
    opacity: 0;
    animation-timing-function: ease-in; /* fade in veloce */
  }
  40% {
    opacity: 1;
    animation-timing-function: ease-out; /* resta visibile */
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes waveAnim {
  0%, 100% { transform: rotate(0deg); }
  15% { transform: rotate(15deg); }
  30% { transform: rotate(-10deg); }
  45% { transform: rotate(15deg); }
  60% { transform: rotate(-10deg); }
  75% { transform: rotate(15deg); }
  90% { transform: rotate(-10deg); }
}

.card-title {
    line-height: inherit;
}

.wave {
  display: inline-block;
  transform-origin: 70% 70%;
}


.main-row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 2rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;
    margin-bottom: 1rem;
    width: 60rem;
}

.main-row > .stats,
.main-row > .card {
  flex: 1 1 0;
  margin: 0;
  min-width: 0;
  box-sizing: border-box;
}

.introduction .card-body {
    margin: 2rem;
}

#activity-card {
    width: 40rem !important;
    margin-top: 1.5rem;
}

.card-body {
    margin: 1rem;
    padding: 0;
}

.card-body .badge {
    margin-right: 1rem;
}

.card-body h2 {
    font-size: 2rem;
    margin: 0;
}

.mobile-status {
  width: 5rem;
  height: 5rem;
  background-color: rgba(28, 28, 30, 0.5);
  backdrop-filter: blur(30px) saturate(1);
  border: 1px solid hsla(0, 0%, 100%, 0.075);
  border-radius: 24px;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 99999;
  transition: width 0.4s ease, height 0.4s ease;
  overflow: hidden;
  display: none;
  align-items: center;
  justify-content: center;
  transform-origin: bottom right;
}

.mobile-status-content {
    width: -moz-available;
    width: -webkit-fill-available;
    height: inherit;
}

.mobile-status.expanded {
  width: calc(100% - 2rem);
  height: 15rem;
  right: 1rem;

  justify-content: flex-start;
  align-items: flex-start;
}

.mobile-status-icon {
    margin: 0.5rem;
}

.mobile-status.expanded .mobile-status-icon {
  display: none;
}

.mobile-status.expanded .mobile-status-content {
  display: block !important;
}


@media (max-width: 1000px) {
  .main-row {
    flex-direction: column;
    margin-left: 1rem;
    margin-right: 1rem;
    height: auto;
    gap: 1rem;
  }
  .main-row > .stats,
  .main-row > .card {
    width: 100%;
    height: auto;
    margin: 0;
    min-width: 0;
  }
}

html {
  background-image: 
    linear-gradient(90deg, #0c0c0c 1px, transparent 1px),
    linear-gradient(180deg, #0c0c0c 1px, transparent 1px) !important;
  background-size: 50px 50px !important; /* dimensione dei quadrati */
}

body, html {
    overflow-x: hidden !important;
}

.wrapper {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

.centered {
    margin-left: auto !important;
    margin-right: auto !important;
    width: 60rem !important;
}

.body {
    overflow-x: hidden !important;
}

body h1 {
    font-size: 4rem;
    margin-left: 15rem;
    font-weight: bold;
    font-family: "Outfit", serif;
    width: auto;
    margin-right: 15rem;
}

body h2 {
    font-size: 3rem;
    margin-top: 5rem;
    margin-bottom: 1rem;
    font-weight: bold;
    font-family: "Outfit", serif;
    text-align: center;
}

body h3 {
    font-size: 1.5rem;
    font-weight: bold;
    font-family: "Figtree", serif;
    width: auto;
    text-align: center;
}

body p {
    font-family: "Figtree", serif;
    width: auto;
    font-size: 1rem;
    text-align: center;
}

.alignImg {
    margin-left: 15rem;
    margin-top: 1rem;
}

span.label-text {
    font-family: "Figtree", serif;
    font-size: 18px;
}

a.btn.btn-primary {
    margin-top: 1rem;
}

html {
    background-color: #000 !important;
    padding-bottom: 5rem;
}

.navbar.bg-base-100.fixed {
    background-color: rgba(28,28,30,.5);
    backdrop-filter: blur(30px) saturate(1);
    z-index: 999;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 24px;
    border: 1px solid hsla(0,0%,100%,.075);
    width: 45rem;
    left: 0;
    right: 0;
    opacity: 0;
}

.navbar.bg-base-100.fixed.show {
  opacity: 1;
  transform: translateY(0);
}

.navbar .btn {
    border-radius: 16px;
}

.navbar-start img {
    height: 2.75rem;
    margin-left: 0.5rem;
}

.navbar-center .btn {
    margin: 0 !important;
}

ul.menu.menu-sm.dropdown-content {
    margin-top: 1.5rem;
    background-color: rgba(28,28,30,1);
    border: 1px solid hsla(0,0%,100%,.075);
    border-radius: 1.25rem;
    font-family: "Figtree", serif;
}

.btn-ghost:hover {
    background-color: var(--fallback-bc,oklch(var(--bc)/0.1));
}

.btn.m-1 {
    background-color: rgb(45, 50, 53, 0.5);
}

.socials {
    width: fit-content;
    display: inherit;
}

.social {
    margin-right: 1rem;
}

.socials .social svg {
    height: 3rem;
    background-color: rgba(48, 48, 60, 0.5);
    border: 1px solid hsla(0, 0%, 100%, 0.075);
    border-radius: 8px;
    padding: 0.5rem;
    fill: rgba(96, 96, 96);
}

.chat.chat-start {
    margin-left: 15rem;
}

.chat.chat-end {
    margin-right: 15rem;
}

.collapse.collapse-plus.bg-base-200 {
    width: 60rem ;
    margin-bottom: 1rem;
    margin-top: 1rem;
    margin-left: 15rem;
}

button.btn.btn-primary {
    margin-left: 15rem;
    margin-top: 1rem;
}

ul.steps {
    width: 60rem;
    margin-left: 15rem;
}

.mockup-window {
    width: 60rem;
    margin-left: 15rem;
    margin-top: 1rem;
}

.input {
    margin-left: 15rem;
    margin-top: 1rem;
}

.modal {
    backdrop-filter: blur(5px);
}

button.btn.no-animation {
    margin-top: 1rem;
    margin-bottom: 1rem;
    margin-left: 15rem;
    cursor: default;
}

button.btn.no-animation:hover {
    background-color: #191e24;
}

ul.bg-base-100.rounded-t-none.p-2 {
    width: 15rem;
    margin-left: -10rem;
    margin-top: 2rem;
}

.overflow-x-auto {
    width: 60rem;
    margin-left: 15rem;
    margin-top: 1rem;
}

.join {
    margin-top: 1rem;
    margin-left: 15rem;
}

h2#descrizione {
    height: 3rem;
}

.gradient-text {
    background: linear-gradient(to right, #3a4080, #7480ff);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    text-shadow: #7480ff 0px 0px 25px;
}

.stats {
    margin-left: 15rem;
    font-family: 'Inter';
    width: -moz-available;
    width: -webkit-fill-available;
    margin-right: 15rem;
}

.stat-value {
    font-family: "Outfit", serif;
}

.heroPfinal {
    text-align: end;
    margin-right: 15rem;
}

.heroP {
    background-image: url("https://images.guns.lol/4VJuW.png");
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 69rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #3f4144;
    box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.25);
}

.heroPsemitransp {
    background-color: rgba(28,28,30,.5);
    border: 1px solid hsla(0,0%,100%,.075);
    backdrop-filter: blur(5px);
    border-radius: 1.25rem;
}

.heroPsemitranspPrimary {
    background-color: rgb(116 128 255 / 50%);
    backdrop-filter: blur(5px);
    color: white;
    margin-left: 1rem !important;
    margin-top: 0.5rem !important;
}

.vertical-shadow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5rem;
    box-shadow: inset 0px 3rem 5rem 0px #000;
    pointer-events: none;
    z-index: -1;
    z-index: 998;
    backdrop-filter: blur(5px);
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

button, .btn {
    font-family: "Figtree", serif;
    border-radius: 0.69rem;
}

.tooltip {
    font-family: "Figtree", serif;
}

.stat {
    font-family: "Figtree", serif;
}

.card {
    background-color: rgba(28,28,30,.5);
    border: 1px solid hsla(0,0%,100%,.075);
    border-radius: 1.25rem;
    width: auto;
    margin-left: 20rem;
    margin-right: 20rem;
}

.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
    gap: 2rem;
    margin: 0 15rem;
    width: auto !important;
    margin-top: 0;
}

.discord-tag {
    background-color: #252528; 
    color: white; 
    padding: 0.5rem; 
    border-radius: 0.5rem; 
    width: max-content; 
    display: flex; 
    align-items: center;
    font-family: "Figtree", serif;
    font-weight: bold;
}

.discord-tag img {
    width: 1.25rem; 
    height: 1.25rem; 
    margin-right: 0.5rem;
}

span.loading.loading-spinner {
    margin-left: 15rem;
    margin-top: 1rem;
}

.skeleton {
    background-color: rgba(28,28,30,.5);
    border: 1px solid hsla(0,0%,100%,.075);
    border-radius: 1.25rem;
    margin-left: 15rem;
    margin-top: 1rem;
    filter: opacity(0.5);
}

.alert {
    margin-top: 1rem;
}

.alert.alert-info {
    background-color: rgba(0, 183, 255, 0.5);
    border: 1px solid rgba(0, 183, 255, 0.5);
    color: #ffffff;
}

.alert.alert-warning {
    margin-left: 15rem;
    margin-right: 15rem;
    width: auto;
    margin-bottom: 3em;
    background-color: rgb(255 190 0 / 30%);
    border: 1px solid rgb(255 191 0 / 7%);
    color: #ffffff;
}

.fixedmodal {
    height: 35rem;
    width: 75rem !important;
}

.modal p {
    margin: 0;
}

.modal-box.w-11\/12.max-w-5xl.fixedmodal {
    background-color: rgba(28,28,30,1);
}

.modal .label img {
    display: inline;
    margin-right: 0.5rem;
    vertical-align: inherit;
}

.tab-content h3 {
    margin: 0;
    margin-top: 1rem;
}

.alert {
    margin-left: 15rem;
    margin-right: 15rem;
    width: auto;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.alert h3 {
    margin: 0;
}

.cool-card {
    background-color: rgba(28,28,30,.5);
    border: 1px solid hsla(0,0%,100%,.075);
    backdrop-filter: blur(5px);
}

.tagcard {
    height: 10rem;
}

.tagcard .card-actions a {
    margin-top: -4rem;
}

.dotted {
    margin-left: 17rem;
    margin-top: 1rem;
    list-style-type: disc;
}

.collapse {
    margin-left: 15rem;
    margin-right: 15rem;
    width: auto;
    margin-top: 1rem;
    background-color: rgba(28,28,30,.5);
    border: 1px solid hsla(0,0%,100%,.075);
    border-radius: 1.25rem;
}

.collapse p {
    margin: 0;
}

.collapse-title {
    font-family: "Outfit", serif;
}

.table {
    font-family: "Figtree", serif;
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    border: 1px solid hsla(0, 0%, 100%, 0.075);
    border-radius: 8px;
    margin-top: 1rem;
}

.marquee:hover .track {
    animation-play-state: paused !important;
}

.track {
    display: flex;
    will-change: transform;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-VAR_WIDTHpx); }
}

.track-card svg {
    height: 1.5rem;
}

.track-card {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(48, 48, 60, 0.5);
  fill: rgba(96, 96, 96);
  border: 1px solid hsla(0, 0%, 100%, 0.075);
  border-radius: 8px;
  padding: 0.5rem;
  margin: 0.5rem;
  box-shadow: 0 0 10px #0005;
  text-align: center;
}

.track-card span {
    font-family: "Figtree", serif;
}

.card-body .language {
    display: flex;
    align-items: center;
}

.card-body svg {
    height: 1.75rem;
}

.intestation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.left, .right {
  display: flex;
  gap: 1rem;
}

.left {
  justify-content: flex-end;
  text-align: right;
}

.right {
  justify-content: flex-start;
  text-align: left;
}

.item {
    background-color: rgba(28,28,30,.5);
    border: 1px solid hsla(0,0%,100%,.075);
    padding: 1rem;
    border-radius: 12px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    display: block;
    text-align: start;
}

.item p {
    text-align: start;
    font-size: 1.25rem;
    font-family: 'JetBrains Mono', monospace;
    font-weight: bolder;
}

.item span {
    text-align: start;
    color: rgb(73, 73, 73);
    font-size: 0.85rem;
}

.projects {
    margin-top: -0.75rem;
}

.projects .item {
    width: fit-content;
    display: inline-block;
    margin-top: 1rem;
    margin-right: 1rem;
}

.activity-wrap {
  font-family: sans-serif;
  user-select: none;
  width: max-content;
}

.months-labels {
  display: grid;
  grid-template-columns: repeat(53, 12px); /* stessa width dei blocchi */
  gap: 4px;
  margin-left: 28px; /* meno spazio, così è allineato ai giorni */
  font-size: 9px;
  color: #666;
  height: 14px;
  align-items: center;
}

.days-labels {
  display: grid;
  grid-template-rows: repeat(7, 12px); /* stessa altezza dei blocchi */
  gap: 5px;
  margin-right: 4px;
  font-size: 9px;
  color: #666;
  line-height: 12px;
  user-select: none;
  height: auto; /* niente calc, si adatta da sola */
}

.graph {
  display: grid;
  grid-template-columns: repeat(53, 16px);
  grid-template-rows: repeat(7, 16px);
  gap: 1px;
  padding: 4px;
  border-radius: 6px;
  user-select: none;
}

.graph-day {
  width: 12px;
  height: 12px;
  background-color: rgba(28,28,30);
  border-radius: 2px;
  position: relative;
}

.graph-day[data-level="1"] { background-color: #2e3366; }
.graph-day[data-level="2"] { background-color: #464d99; }
.graph-day[data-level="3"] { background-color: #5d66cc; }
.graph-day[data-level="4"] { background-color: #7480ff; }

.legend {
    display: flex;
    align-items: center;
    gap: 4px;
    width: -moz-available;
    width: -webkit-fill-available;
}

.pinnedprojects {
    display: inherit;
    gap: 2rem;
}

.pinnedprojects .item {
    width: -webkit-fill-available;
    width: -moz-available;
}

.pinnedprojects .item p {
    font-family: "Figtree", serif;
    font-size: 1rem;
    text-align: center;
    font-weight: 400;
}

.tags {
    margin-top: 0.75rem;
}

.badge {
    font-family: "Figtree", serif;
}

.tag {
    color: #848484;
}

.projectstats {
    display: inline-flex;
    margin-top: 1rem;
}

.projectstats p {
    width: fit-content;
    margin-right: 0.5rem;
}

.pinnedprojects .item a {
    margin: 0;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    width: inherit;
}

/* CSS per i dispositivi col tema impostato sul chiaro */
@media (prefers-color-scheme: light) {
    html {
        background-color: #cfd0d0 !important;
        background-image: 
        linear-gradient(90deg, #dfdfdf 1px, transparent 1px),
        linear-gradient(180deg, #dfdfdf  1px, transparent 1px) !important;
        background-size: 50px 50px !important; /* dimensione dei quadrati */
    }

    .navbar.bg-base-100.fixed {
        background-color: rgba(228,228,230,.5);
        border: 1px solid hsla(0,0%,100%,.975);
        backdrop-filter: blur(30px);
        z-index: 999;
    }

    .socials .social svg {
        background-color: rgba(168,168,170,.5);
    }

    .heroPsemitranspPrimary {
        background-color: rgb(116 128 255 / 25%);
        backdrop-filter: blur(5px);
        color: white;
    }

    .card {
        background-color: rgba(228,228,230,.5);
        border: 1px solid hsla(0,0%,100%,.975);
    }

    .track-card {
        background-color: rgba(168,168,170,.5);
        fill: rgba(96, 96, 96);
        box-shadow: 0 0 10px #70707054;
    }

    .item {
        background-color: rgba(168,168,170, 0.5);
    }

    .graph-day {
        background-color: #a8a8aa;
    }

    .graph-day[data-level="1"] { background-color: #a8a8aa; }
    .graph-day[data-level="2"] { background-color: #9b94db; }
    .graph-day[data-level="3"] { background-color: #8886f4; }
    .graph-day[data-level="4"] { background-color: #7480ff; }

    .vertical-shadow {
        box-shadow: inset 0px 3rem 5rem 0px #cfd0d0;
        pointer-events: none;
        z-index: -1;
        z-index: 998;
        backdrop-filter: blur(5px);
        mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    }
}

/* Smaller Mobile Devices (for screens smaller than 480px) */
@media (max-width: 1000px) {
    html {
        padding-bottom: 7rem;
    }

    body h1 {
        margin-left: 1rem;
        font-size: 2rem;
        margin-right: 1rem;
        font-family: "Figtree", serif;
    }

    body h2 {
        margin-left: 1rem;
        font-size: 2rem;
        margin-right: 1rem;
        font-family: "Figtree", serif;
    }
    
    body p {
        margin-left: 1rem;
        margin-right: 1rem;
        font-family: "Figtree", serif;
    }

    .alignImg {
        margin-left: 1rem;
        margin-right: 1rem;
        margin-top: 1rem;
        width: -webkit-fill-available;
        width: -moz-available;
    }

    button.btn.btn-wide {
        margin-top: 1rem;
        width: 10rem;
    }

    .collapse.collapse-plus.bg-base-200 {
        width: auto;
        margin-bottom: 1rem;
        margin-top: 1rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .chat.chat-start {
        margin-left: 1rem;
    }

    .chat.chat-end {
        margin-right: 1rem;
    }

    button.btn.btn-primary {
        margin-left: 1rem;
        margin-top: 1rem;
    }

    ul.steps {
        width: auto;
        margin-left: 1rem;
        margin-right: 2rem;
    }
    
    .input {
        margin-left: 1rem;
        margin-top: 1rem;
        margin-right: 1rem;
    }

    button.btn.no-animation {
        margin-top: 1rem;
        margin-bottom: 1rem;
        margin-left: 1rem;
        cursor: default;
    }

    .overflow-x-auto {
        width: auto;
        margin-left: 1rem;
        margin-top: 1rem;
        margin-right: 1rem;
    }

    .join {
        display: grid;
        margin: 0;
        margin-top: 1rem;
        margin-left: 1rem;
        margin-right: 2rem;
        grid-template-columns: auto;
    }

    .card.bg-base-100.w-96.shadow-xl {
        width: auto;
        margin: 1rem;
        container-type: inline-size;
    }

    body h3 {
        font-size: 1.5rem;
        margin-left: 1rem;
        font-weight: bold;
        font-family: "Figtree", serif;
        width: auto;
        margin-right: 1rem;
    }

    .navbar {
        width: auto !important;
        margin-left: 2rem !important;
        margin-right: 2rem !important;
    }

    .navbar-center {
        display: none;
    }

    .stats {
        margin-left: 1rem;
        font-family: 'Inter';
        width: -webkit-fill-available;
        margin-right: 1rem;
    }

    .heroPfinal {
        text-align: end;
        margin-right: 1rem;
    }
    
    .container {
        display: inline;
    }

    .alert.alert-warning {
        margin-left: 1rem;
        margin-right: 1rem;
        width: auto;
        margin-bottom: 0;
    }

    span.loading.loading-spinner {
        margin-left: 1rem;
        margin-top: 0;
    }

    .skeleton {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
        margin-bottom: 1rem !important;
    }

    div#tags {
        margin-right: 1rem;
    }

    .coolcard {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .dotted {
        margin-left: 3.5rem;
        margin-top: 1rem;
        list-style-type: disc;
    }

    .collapse {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .mobile-status {
        display: flex;
    }

    .navbar {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        z-index: 999;
    }

    .centered {
        width: auto !important;
        margin: 0 !important;
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .card-title {
        font-size: 2rem !important;
    }

    .card-title span {
        height: 2.5rem !important;
        padding-top: .35rem !important;
    }

    .introduction {
        margin-top: 1.5rem !important;
    }

    .introduction .card-body {
        margin: 1rem;
    }

    .typewriter {
        font-size: 1.25rem;
    }

    .socials .social svg {
        height: 3rem;
        margin-bottom: 1rem;
    }

    .intestation {
        display: flex;
        margin-bottom: 0 !important;
    }

    .intestation .right {
        justify-content: end;
    }

    .intestation .left {
        width: 100%;
        flex-direction: column;
    }

    .intestation .socials {
        flex-wrap: wrap;
    }

    .intestation .right .social {
        margin-top: 4rem !important;
    }

    .main-row {
        flex-direction: column;
        margin-left: 0;
        margin-right: 0;
        height: auto;
        gap: 2rem;
        width: auto;
    }

    .toplangs {
        max-width: inherit !important;
    }

    #lang1bar, #lang2bar, #lang3bar, #lang4bar, #lang5bar {
        width: 10rem !important;
    }

    #codingtime {
        margin: 0;
    }

    .atcs {
        display: initial;
    }

    .atcs .right {
        margin-top: 1rem;
    }

    .atcs .right .item {
        width: -moz-available !important;
        width: -webkit-fill-available !important;
    }

    .ag .right .item {
        margin-left: 1rem;
    }

    .activity-wrap {
        overflow-x: auto;
        width: 100%;
    }

    .pinnedprojects {
        display: initial;
    }

    .pinnedprojects .item {
        margin-bottom: 1rem;
    }

    .viewallrepo {
        margin: 0 !important;
    }

    .clock {
        width: 13rem !important;
    }
}