  :root{
    --ink:#1b2430;
    --paper:#eeece9;
    --line:#b8e1ec;
    --accent:#1cc0af;
    --accent-soft:#2e917c;
    --muted:#385276;
    --mono: "JetBrains Mono", "Fira Code", Consolas, monospace;
    --sans: "Inter", "Segoe UI", Helvetica, Arial, sans-serif;
  }

  *{box-sizing:border-box;}

  body{
    margin:0;
    background:#b2d4f6;
    font-family:var(--sans);
    color:var(--ink);
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:40px 16px;
  }

  .page{
    width:794px;
    max-width:100%;
    background:var(--paper);
    padding:56px 60px 48px;
    margin:30px auto;
    box-shadow:0 8px 30px rgba(162, 67, 67, 0.12);
  }

  header{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    border-bottom:3px solid var(--ink);
    padding-bottom:18px;
    margin-bottom:26px;
  }

  .name{
    font-size:34px;
    font-weight:700;
    letter-spacing:-0.5px;
    line-height:1;
  }

  .role{
    font-family:var(--mono);
    font-size:13px;
    color:var(--accent);
    margin-top:8px;
    letter-spacing:0.5px;
  }

  .contact{
   
    font-family:var(--mono);
    font-size:12px;
    color:var(--muted);
    line-height:1.7;
  }
 section{ margin-bottom:26px; }

  .section-title{
    font-family:var(--mono);
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:2px;
    color:var(--accent);
    margin-bottom:12px;
    display:flex;
    align-items:center;
    gap:10px;
  }

  .section-title::before{
    content:"//";
    color:var(--muted);
  }

  .section-title::after{
    content:"";
    flex:1;
    height:1px;
    background:var(--line);
  }
 .entry{
    margin-bottom:16px;
  }


  .entry-title{
    font-weight:600;
    font-size:15px;
  }

    .entry-subtitle{
        font-family:var(--mono);
        font-size:12px;
        color:var(--muted);
    }
    .entry-details{
        margin-top:6px;
        font-size:14px;
        line-height:1.5;
        font-family:var(--sans);
    }
  footer{
    margin-top:10px;
    text-align:center;
    font-family:var(--mono);
    font-size:10.5px;
    color:var(--line);
  }

  @media print{
    body{ background:#fff; padding:0; }
    .page{ box-shadow:none; padding:30px 40px; }
  }

  @media (max-width:600px){
    .page{ padding:32px 24px; }
    header{ flex-direction:column; align-items:flex-start; gap:14px; }
    .contact{ text-align:left; }
  }
.hobby-section{
    width:600%;
    padding: 20px;
}
.hobby-section h2{
   color:#13b9e6;
   font-family: 'Arial', sans-serif;
}
.hobby-path{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}
.hobby-path::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 30%;
    width: 40%;
    right: 30%;
    height: 3px;
    background-color: #0b0343;
    transform: translateY(-50%);
    z-index: 0;
}
.hobby{
    width: 50px;
    height: 50px;
    border: 3px solid #0b0343;
    border-radius: 50%;
    display: flex;
    background-color: white;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hobby i{
    font-size: 25px;
}
.skills{
    width: 60%;

}
.skill{
    margin-bottom: 25px;
}
.skill p{
    margin-bottom: 8px;
    font-size: 18px;
}
.progress{
    width: 100%;
    height: 12px;
    background-color: #b0c2e6;
    border-radius: 5px;
    overflow: hidden;
}
.progress-bar{
    height: 100%;
    background-color: #0b0343;
    
} 
.html{
    width: 80%;

}
.css{
    width: 70%;
}
.js{
    width: 40%;
}
.c{
    width: 60%;
}
.cpp{
    width: 50%;
}