body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f9f9f9;
    color: #333;
    line-height: 1.6;
  }
  header {
    /* Use your image as background */
    background: url('img/robin-glauser-zP7X_B86xOg-unsplash.jpg') no-repeat center/cover;
    height: 70vh; /* adjust height as needed */
    /* Clip the bottom edge at a diagonal, 70% down from top */
    clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 2rem;
  }
  header h1 {
    margin: 0;
    font-size: 3rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.6);
  }
  header p {
    margin: 0.5rem 0 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
  }
  .container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
  }
  .section {
    margin-bottom: 4rem;
  }
  .project {
    border: 1px solid #ddd;
    padding: 1rem;
    margin-bottom: 1rem;
    background: white;
    border-radius: 8px;
  }
  footer {
    text-align: center;
    padding: 2rem;
    background: #62929E;
    color: white;
  }