body {
  margin: 0;
  padding: 0;
  background-color: #08111f;
  color: #e5e7eb;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

ul.menu {
  list-style: none;
  display: flex;
  justify-content: center;
  background: #12223d;
  padding: 1rem 0;
  margin: 0;
  gap: 1.5rem;
}
ul.menu li a {
  color: #e5e7eb;
  text-decoration: none;
  font-weight: bold;
  padding: 0.75rem 1rem;
  border-radius: 6px;
}
ul.menu li a.active {
  background-color: #2563eb;
  color: white;
}
ul.menu li a:hover {
  background-color: rgb(83.7142857143, 132.4285714286, 239.2857142857);
  color: white;
}

.primary-button {
  background-color: #2563eb;
  color: white;
  padding: 0.9rem 1.6rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.primary-button:hover {
  background-color: rgb(74.3714285714, 125.7428571429, 238.4285714286);
  transform: translateY(-2px);
}

.secondary-button {
  color: #22d3ee;
  font-weight: 500;
  text-decoration: none;
  padding: 0.6rem 1rem;
  border: 2px solid #29334e;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.secondary-button:hover {
  background-color: #22d3ee;
  color: #08111f;
  border-color: #22d3ee;
}

.skills-page-container {
  max-width: 90%;
  margin: 0 auto;
}

#mygithub {
  text-decoration: none;
  color: #22d3ee;
  font-weight: 700;
}

.projects-page-container {
  margin: 25px;
  margin-top: 0;
}

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

.project-card {
  max-width: 45%;
  min-width: 45%;
  background-color: #12223d;
  border-radius: 12px;
  padding: 20px;
}
.project-card .project-card-content {
  min-height: 300px;
  max-height: 300px;
  display: flex;
  display: flex;
  gap: 30px;
}
.project-card .project-card-content .project-card-text {
  flex: 2;
  display: flex;
  flex-direction: column;
}
.project-card .project-card-content .project-card-text h3 {
  font-size: 1.4rem;
}
.project-card .project-card-content .project-card-text p {
  line-height: 1.5;
}
.project-card .project-card-content .project-card-text .project-card-tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.project-card .project-card-content .project-card-text .project-card-tech-list .project-card-tech-item {
  background-color: #1a2338;
  border: #29334e solid 3px;
  color: #e5e7eb;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 0.9rem;
  text-align: center;
}
.project-card .project-card-content .project-card-text .project-card-button {
  background-color: #12223d;
  border: #29334e solid 3px;
  padding: 10px 20px;
  border-radius: 8px;
  width: fit-content;
  margin-top: auto;
}
.project-card .project-card-content .project-card-text .project-card-button a {
  color: #22d3ee;
  font-weight: 500;
  font-size: 1.15rem;
  text-decoration: none;
}
.project-card .project-card-content .project-card-text .project-card-button a:hover {
  font-weight: 800;
  text-decoration: none;
}
.project-card .project-card-content .project-card-text .secondary-button {
  display: flex;
  margin-top: auto;
  width: fit-content;
  align-items: center;
}
.project-card .project-card-content .project-card-text .secondary-button img {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
  vertical-align: middle;
}
.project-card .project-card-content .project-card-text .secondary-button a {
  color: #22d3ee;
  text-decoration: none;
}
.project-card .project-card-content .project-card-text .secondary-button:hover a {
  color: #08111f;
}
.project-card .project-card-content .project-card-image {
  background-color: black;
  flex: 3;
  border-radius: 8px;
}
.project-card .project-card-content .project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.skills-section {
  margin-bottom: 3rem;
}
.skills-section h2 {
  font-size: 1.8rem;
  color: #22d3ee;
  margin-bottom: 1rem;
}
.skills-section .skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.skills-section .skills-list .skills-card {
  background-color: #12223d;
  border-radius: 12px;
  padding: 0.8rem;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 120px;
  text-align: center;
}
.skills-section .skills-list .skills-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.45);
}
.skills-section .skills-list .skills-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 0.5rem;
}
.skills-section .skills-list .skills-card p {
  margin: 0;
  font-size: 0.9rem;
}

.home-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;
  padding: 4rem 1rem;
}

.home-cta {
  display: flex;
  justify-content: center;
}

.home-description {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.home-description p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e5e7eb;
}
.home-description strong {
  color: #22d3ee;
  font-weight: 600;
}

.home-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.home-links .secondary-button {
  display: flex;
  align-items: center;
}
.home-links .secondary-button img {
  width: 25px;
  height: 25px;
  margin-right: 0.5rem;
  vertical-align: middle;
}
.home-links .secondary-button a {
  color: #22d3ee;
  text-decoration: none;
}
.home-links .secondary-button:hover a {
  color: #08111f;
}

.home-header {
  text-align: center;
}
.home-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
  color: #e5e7eb;
}
.home-header h2 {
  margin-top: 0.5rem;
  font-size: 1.3rem;
  font-weight: 500;
  color: #94a3b8;
}

@media (max-width: 900px) {
  .projects-page-container {
    flex-direction: column;
    align-items: stretch;
  }
  .project-card {
    width: 100%;
    max-width: none;
  }
  .project-card .project-card-content {
    flex-direction: column;
    gap: 10px;
    min-height: fit-content;
    max-height: fit-content;
  }
  .project-card .project-card-content .project-card-text {
    gap: 10px;
  }
  .project-card .project-card-content .project-card-text h3 {
    margin: 0;
  }
  .project-card .project-card-content .project-card-text p {
    margin: 0;
  }
  .project-card .project-card-content .project-card-image {
    order: -1;
    width: 100%;
    max-height: 220px;
  }
  .project-card .project-card-content .project-card-image img {
    max-height: 220px;
    object-fit: contain;
  }
}

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