 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Ubuntu Mono', monospace;
  }

  body {
    background-color: #f4f4f4;
    color: #333;
  }

  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #222;
    color: white;
  }

  nav .logo {
    font-size: 1.5rem;
    font-weight: bold;
  }

  nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
  }

  nav ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
  }

  nav ul li a:hover {
    color: #00bcd4;
  }

  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
  }

  .intro {
    text-align: center;
    max-width: 800px;
  }

  .intro h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .intro p {
    font-size: 1.2rem;
    color: #555;
  }

  .projects {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
  }

  .project-card {
    background-color: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    transition: transform 0.3s;
  }

  .project-card:hover {
    transform: translateY(-5px);
  }

  .project-card h3 {
    margin-bottom: 0.5rem;
  }

  .project-card p {
    font-size: 0.95rem;
    color: #666;
  }


  .contact {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
  }

  figure {
    display: table;
  }
  img {
    height: auto;
    max-width: 250px;
    filter: drop-shadow(5px 5px 5px #222);
    border-radius: 4rem ;
  }
  figcaption {
    display: table-caption;
    caption-side:bottom;
  }

  @media (min-width: 768px) {
    .container {
      flex-direction: row;
      justify-content: space-around;
      align-items: flex-start;
    }

    .intro {
      text-align: left;
    }
  }