 @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');
 * {
    margin: 0;
    padding: 0;
      font-family: "Montserrat", sans-serif;

 }
body {
      background-color: #f9f9f9;
      font-family: 'Poppins', sans-serif;
    }

    header {
      text-align: center;
      padding: 2rem 0;
      /* background: linear-gradient(90deg, #387aff, #4f72ff); */
      background: #377DFF;
      color: white;
    }

    .portfolio-title {
      font-size: 2rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .portfolio-grid img {
      width: 100%;
      border-radius: 10px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .portfolio-grid img:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    footer {
      text-align: center;
      padding: 1rem;
      background-color: #377DFF;
      color: white;
      font-size: 0.9rem;
    }
    button .links{
        text-decoration: none;
        color: black;
        font-size: 20px;
        font-weight: 500;
        width: 250px;
    }
    .portfolio-title {
        width: 250px;
        display: block;
        margin: auto;
    }
    .logo img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        border: 3px solid white;
        margin-bottom: 10px;

    }