body {
    background-color: #01030F;
    color: white;
    margin: 2rem;
    margin-left: 2.5rem;
    font-family: 'Inter', sans-serif;
}
header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
#h-nav {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    align-items: center;
}
.nav.selected {
    color: #a855f7;
    scale: calc(1.2);
    text-decoration: underline;
}
#bf {
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: #a855f7;
    font-size: 30px;
    font-weight: 700;
}
.logo {
    border:3px solid #a855f7;
    width: 30px;
    height: 30px;
    border-radius: 100%;
}
.logo img {
    transform: translateX(5px) translateY(5px);
    scale: calc(0.95);
}
section {
    margin-top: 5rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-left: 4rem;
    margin-right: 4rem;
}
.hi {
    color: #a855f7;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0;
}
.name {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
    margin-top: 1rem;
}
.name span {
    color: #a855f7;
}
.div-text {
    font-size: 26px;
    font-weight: 500;
    line-height: 0.6;
}
.div-text span {
    color: #a855f7;
}
.div-text2 {
    font-size: 16px;
    line-height: 0.7;
    color: #a7a9bc;
    max-width: 500px;
    margin-top: 2.5rem;
}
.btn {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    color: white;
    padding: 14px 24px;
    border-radius: 8px;
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.3);
    margin-right: 1rem;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(168, 85, 247, 0.45);
}
.btn2 {
    background: transparent;
    border: 1px solid #7c3aed;
    color: white;
    padding: 14px 24px;
    border-radius: 8px;
}
#profile-ring {
    width: 440px;
    height: 440px;
    border: 2px solid #a855f7;
    border-radius: 50%;
    box-shadow:
        0 0 30px rgba(124, 58, 237, .25),
        inset 0 0 30px rgba(124, 58, 237, .1);
    position: relative;
}
.code-card {
    background: rgba(15, 18, 34, 0.85);
    border: 1px solid #34304A;
    border-radius: 14px;
    backdrop-filter: blur(12px);
    width: 19rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(-18rem) translateY(-4rem);
    font-family: JetBrains Mono;
    z-index: 40;
}
.code-card pre {
    transform: translateX(-2.8rem) translateY(-0.8rem);
    line-height: 1.5;
    font-size: 14px;
    height: 8.8rem;
}
#div-card {
    display: flex;
    justify-content: end;
}
.div-logo{
    display: flex;
    flex-direction: row;
    gap: 3rem;
    transform: translateY(60px);
}
.keyword {
    color: #c084fc;
}

.variable {
    color: #ab67f9;
}

.property {
    color: #f146dd;
}

.string {
    color: #22d3ee;
}
#dd img {
    z-index: 30;
    scale: calc(0.5);
    position: absolute;
    transform: translateX(-500px) translateY(-500px);
}
#dd {
    display: flex;
    justify-content: start;
}
@media screen and (width <= 450px) {
  body {
    margin-left: 1.2rem;
  }
  section {
    flex-direction: row;
  }
.code-card {
    transform: translateX(10rem) translateY(-8.6rem);
}
header {
    gap: 10rem;
}
#h-nav {
    gap: 1rem;
}
section {
    margin-left: 0rem;
    margin-right: 0rem;
}
.hi {
    font-size: 16px;
}
.name {
    font-size: 48px;
}
.div-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
}
.div-text2 {
    font-size: 14px;
    line-height: 1;
    margin-top: 1rem;
}
/* *** */
.btn2 {
    margin-top: 0.5rem;
}
.div-logo{
    gap: 1.2rem;
    transform: translateY(26px);
}
#dd img {
    transform: translateX(-500px) translateY(-550px);
}
}