/* [project]/src/app/globals.css [app-client] (css) */
body {
  color: #333;
  background: #f5f5f5;
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
}

.navbar {
  background-color: #222;
  gap: 1rem;
  padding: 1rem;
  display: flex;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  transition: color .3s;
}

.nav-link:hover {
  color: #00bcd4;
}

.main-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.home, .about, .projects, .contact {
  animation: .5s ease-in fadeIn;
}

.cta-button, .submit-button {
  color: #fff;
  cursor: pointer;
  background-color: #00bcd4;
  border: none;
  border-radius: 8px;
  margin-top: 1rem;
  padding: .75rem 1.5rem;
  transition: background-color .3s;
}

.cta-button:hover, .submit-button:hover {
  background-color: #0097a7;
}

.input, .textarea {
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 100%;
  margin-bottom: 1rem;
  padding: .75rem;
  display: block;
}

.projects-list {
  padding: 0;
  list-style: none;
}

.projects-list li {
  background: #fff;
  border-radius: 8px;
  margin: 1rem 0;
  padding: 1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*# sourceMappingURL=src_app_globals_91e4631d.css.map*/