body {
  font-family: "PT Mono", monospace;
  line-height: 1.6;
  background: #ffffff;
  overflow-x: hidden;
  font-size: 16px;
}

.hide {
  display: none;
}

.portfolio-img-heading {
  text-align: center;
  margin-top: 30px;
}

.portfolio-img-heading img {
  width: 200px;
  height: auto;
}

.primary-button {
  align-items: center;
  appearance: none;
  background-color: #fff;
  border: 1px solid #dbdbdb;
  border-radius: 0.375em;
  box-shadow: none;
  box-sizing: border-box;
  color: #363636;
  cursor: pointer;
  display: inline-flex;
  font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Helvetica,
    Arial, sans-serif;
  font-size: 1rem;
  height: 2.5em;
  justify-content: center;
  line-height: 1.5;
  padding: calc(0.5em - 1px) 1em;
  position: relative;
  text-align: center;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: top;
  white-space: nowrap;
}

.primary-button a {
  text-decoration: none;
  color: #363636;
}

.primary-button:active {
  border-color: #4a4a4a;
  outline: 0;
}

.primary-button:focus {
  border-color: #485fc7;
  outline: 0;
}

.primary-button:hover {
  border-color: #b5b5b5;
}

.primary-button:focus:not(:active) {
  box-shadow: rgba(72, 95, 199, 0.25) 0 0 0 0.125em;
}

.works-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  font-family: sans-serif;
}

.works-header {
  text-align: center;
  margin-bottom: 2rem;
}

.works-header h2 {
  margin-bottom: 0.5rem;
  font-size: 2rem;
}

.works-header p {
  color: #666;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 1rem;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.works-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: 8px;
  transition: transform 0.3s ease;
  background-color: #f9f9f9;
}

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

.icon-works img {
  width: 60px;
  height: auto;
  margin-bottom: 1rem;
}

.works-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  color: #000;
}

.works-card p {
  font-size: 0.95rem;
  color: #555;
}
