/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
  max-width: 960px;
  margin: 0 auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header Styles */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #333;
  color: #fff;
}

.header .logo {
  font-size: 24px;
  font-weight: bold;
}

.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.burger-menu span {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 4px 0;
}

.menu {
  display: flex;
  gap: 15px;
}

/* Footer Styles */
.footer {
  background-color: #333;
  color: #fff;
  padding: 10px;
  text-align: center;
}

.footer-links, .contact-info {
  margin: 10px 0;
}

.contact-info a {
  color: #fff;
}

/* Home Page Styles */
.projects {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  padding: 15px;
}

.project {
  background: #fff;
  padding: 10px;
  border: 1px solid #ddd;
}

.project img {
  width: 100%;
  height: auto;
}

.project .title {
  font-size: 18px;
  margin-top: 10px;
}

/* Responsive Styles */
@media (min-width: 768px) {
  .projects {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .projects {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .menu {
    display: none;
  }

  .burger-menu {
    display: flex;
  }
}