* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: "Courier New", Courier, monospace;
    background: #C19AB7;
    color: #170A1C;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  header {
    background-color: #9C95DC;
    text-align: center;
    padding: 2rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .project-container {
    background-image: url('images/grass.jpeg');
    background-size: cover;
    background-position: center;
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
  }
  
  .projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    width: 100%;
  }
  
  .box {
    text-decoration: none;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 3px solid #0B7189;
  }
  
  .box:hover {
    transform: translateY(-5px);
  }
  
  .box img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
  }
  
  .box p {
    text-align: center;
    padding: 0.8rem;
    font-size: 1rem;
    color: #228CDB;
    background: #C19AB7;
    font-weight: bold;
  }

  