body {
    font-family: 'Josefin Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: linear-gradient(to bottom, #323247, #1a2842);
    color: #fff;
  }
  
  header {

    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    position: relative;

  }

  h1 {
    font-size: 42px;
    margin: 0;
    line-height: 1.5;
    background: linear-gradient(45deg, #2357e6, #f7f3ed);
    /* -webkit-text-stroke: 2px rgb(10, 6, 46); */
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  h2 {
    font-size: 24px;
  }
  
  .container {
    background-color: #04001d;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 24px;
    margin: 24px auto;
    max-width: 700px;
  }
  
  .section {
    margin-top: 17px;
  }
  
  .section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
  }
  
  .section p {
    font-size: 16px;
    line-height: 1.5;
  }

  .projects {
    font-family: 'Fira Mono', monospace;
    font-size:14px;
  }
  
  .projects li {
    list-style: none;
    margin-bottom: 10px;
  }
  
  .projects a {
    color: #0099cc;
    display: inline-block;
    padding: 8px 16px;
    background-color: #f7f7f7;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
  }
  
  .projects a:hover {
    color: rgb(255, 255, 255);
    background-color: #e5e5e5;
  }

  
  .projects a:active {
    color: rgb(255, 255, 255);
  }
  
  .contact p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  
  .contact a {
    color: #0099cc;
    text-decoration: none;
  }
  
  .contact a:hover {
    color: rgb(195, 0, 255);
  }
  
  .contact a:active {
    color: rgb(174, 77, 230);
  }

  ul.projects a {
    display: inline-block;
    margin: 10px 0;
    padding: 8px 16px;
    background-color: #3358d3;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
  }
  
  ul.projects a:hover {
    background-color: #0d1a8a;
  }