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

  body {
    font-family: 'Poppins', sans-serif;
    background-color: #000000;
    color: #f0f0f0;
    padding: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  h1,
  h2,
  h3,
  .heading {
    font-family: 'Montserrat', sans-serif;
  }

  .container {
    max-width: 950px;
    margin: auto;
    background-color: #000000;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(252, 190, 65, 0.774);
  }

  .title {
    text-align: center;
    color: #fcbe41;
    font-size: 6vw;
    margin-top: 25px;
    margin-bottom: 25px;
    text-shadow: 0 0 2px #f5a100;
  }

  .name {
    text-align: center;
    font-size: 5vw;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
  }

  .contact {
    text-align: center;
    font-size: 3.8vw;
    margin-bottom: 55px;
  }

  .contact a {
    color: #fcbe41;
    text-decoration: none;
    margin: 0 8px;
    display: inline-block;
  }

  .contact i {
    font-size: 1em;
  }

  .contact span {
    display: none;
  }

  section {
    margin-bottom: 30px;
  }

  .heading {
    font-size: 4.2vw;
    color: #f5a100;
    border-bottom: 2px solid #f5a100;
    padding-bottom: 5px;
    margin-bottom: 25px;
    margin-top: 25px;
    text-shadow: 0 0 1.5px #f5a100;
  }

  .info p {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #dcdcdc;
    font-size: 3.6vw;
    margin-left: 10px;
  }

  .info ul {
    margin-left: 20px;
    padding-left: 0;
  }

  .info ul li {
    list-style: none;
    margin-bottom: 20px;
    margin-top: 20px;
    padding-left: 1.5em;
    position: relative;
    color: #eaeaea;
    font-size: 3.6vw;
  }

  .info ul li::before {
    content: "\27A4";
    color: #f5a100;
    position: absolute;
    left: 0;
    top: 0.1em;
    font-size: 0.9rem;
    text-shadow: 0 0 2px #f5a100;
  }

  .project-title {
    font-weight: 600;
    font-size: 3.8vw;
    margin-top: 12px;
    margin-left: 20px;
    color: #fdc149ec !important;
  }

  .highlight {
    color: grey;
    font-weight: 500;
  }

  .skills strong,
  .interests strong {
    color: #f5a100;

  }


  @media (min-width: 768px) {
    .title {
      font-size: 28px;
    }

    .name {
      font-size: 24px;
    }

    .contact {
      font-size: 15px;
    }

    .contact span {
      display: inline;
    }

    .contact i {
      margin-right: 5px;
    }

    .heading {
      font-size: 20px;
    }

    .info p,
    .info ul li,
    .project-title {
      font-size: 15px;
    }
  }