* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background-color: #0e0e0e;
    color: wheat;
    font-family: Arial, sans-serif;
  }
  
  header {
    background-color: #222;
    padding: 1rem;
    text-align: center;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
  }
  
  nav ul li {
    margin: 0 15px;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
  }
  
  .view-1 {
    text-align: center;
    padding: 50px;
  }
  
  .view-1 img {
    width: 50%;
    object-fit: cover;
  }
  
  .projects {
    display: flex;
    justify-content: space-around;
    padding: 20px;
  }
  
  .project-card {
    width: 30%;
    padding: 20px;
    background-color: #333;
    text-align: center;
  }
  
  .project-card img {
    width: 100%;
    border-radius: 10px;
  }
  
  form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: auto;
    padding: 20px;
  }
  
  input, textarea {
    margin-bottom: 10px;
    padding: 10px;
  }
  
  button {
    padding: 10px;
    background-color: #444;
    color: white;
    border: none;
  }
  .marquee {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    background-color: #222;
    padding: 10px 0;
  }
  
  .text {
    display: flex;
    animation: marquee 10s linear infinite;
  }
  
  .text p {
    color: wheat;
    font-size: 18px;
    font-weight: bold;
    margin-right: 50px;
  }
  
  @keyframes marquee {
    from {
      transform: translateX(100%);
    }
    to {
      transform: translateX(-100%);
    }
  }
  footer {
    background: black;
    color: wheat;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

.social-links {
    margin: 10px 0;
}

.social-links a {
    color: wheat;
    text-decoration: none;
    font-size: 18px;
    margin: 0 10px;
}

.social-links a i {
    margin-right: 5px;
    font-size: 20px;
}
.project-img {
  width: 300px;  
  height: 200px; 
  object-fit: cover; 
  border-radius: 10px; 
}

.projects-container {
  display: flex;
  justify-content: center;  
  gap: 20px;  
  flex-wrap: wrap;  
}

