body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #000000;
  }
  
  header {
    background-color: #881919;
    padding: 1.5em 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  nav ul {
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
  }
  
  nav ul li {
    display: inline;
    margin: 0 1.5em;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  nav ul li a:hover {
    color: #ff0202;
  }
  
  #hero {
    background-image: url(asset/aleksandr-popov-3InMDrsuYrk-unsplash.jpg);
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 6em 2em;
  }
  
  .hero-content-image {
    display: flex;
    justify-content: center;
    margin-bottom: 2em;
  }
  
  .hero-content-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
  }
  .hero-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  #hero h1 {
    font-size: 4em;
    margin-bottom: 0.5em;
    color: #ffffff;
  }
  
  #hero p {
    font-size: 1.3em;
    color: #ffffff;
    margin-bottom: 2em;
  }
  
  .button {
    background-color: #e63530;
    color: white;
    padding: 1em 2em;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 1em;
    transition: background-color 0.3s ease;
  }
  
  .button:hover {
    background-color: #750f0b;
  }
  
  #projects, #about, #contact {
    padding: 4em 2em;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  #projects h2, #about h2, #contact h2 {
    text-align: center;
    margin-bottom: 1.5em;
    color: #cc0000;
    font-size: 2.5em;
  }
  
  .project-list {
    display: flex;
    background-size: cover;
    background-color:#633535;
    padding: 2em;
    border-radius: 8px;
    justify-content: space-between;
    
  }
  
  .project {
    width: 45%;
    margin-bottom: 2em;
    border: 1px solid #d90505;
    background-color: #ffffff;
    padding: 2em;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(210, 22, 22, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .project:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
  
  footer {
    text-align: center;
    padding: 2em 0;
    background-color: #f8f8f8;
    border-top: 1px solid #eee;
  }
  
  /* Responsif */
  @media (max-width: 768px) {
    nav ul li {
        display: block;
        margin: 0.8em 0;
    }
  
    .project {
        width: 100%;
    }
  }