@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'JetBrains Mono', monospace;
  background-color: #f5f5f0;
  color: #2a2a2a;
  line-height: 1.6;
  padding: 40px 20px;
}

.container {
  max-width: 650px;
  margin: 0 auto;
  padding: 30px;
  background-color: #faf9f6;
  border: 1px solid #e6e6e0;
}

header {
  text-align: center;
  margin-bottom: 30px;
}

.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 1px solid #e6e6e0;
}

h1 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.subtitle {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #4a4a4a;
}

.skills {
  font-size: 0.9rem;
  color: #666;
}

.separator {
  color: #2a2a2a;
  margin: 30px 0;
  font-family: monospace;
}

.about {
  margin: 30px 0;
  padding: 0 10px;
}

.section-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
  text-align: center;
}

.section-subtitle {
  font-size: 0.9rem;
  color: #4a4a4a;
  margin-bottom: 30px;
}

.project {
  margin-bottom: 40px;
  padding: 20px;
  border: 1px solid #e6e6e0;
}

.project h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.project h3 a {
  color: #00008B;
  text-decoration: none;
}

.project h3 a:hover {
  text-decoration: underline;
}

.description {
  margin-bottom: 20px;
  color: #4a4a4a;
}

.store-buttons {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
}

.store-button {
  display: inline-flex;
  align-items: center;
  padding: 8px 15px;
  color: #2a2a2a;
  text-decoration: none;
  border: 1px solid #e6e6e0;
  font-size: 0.9rem;
  transition: background-color 0.2s;
}

.store-button:hover {
  background-color: #f0f0f0;
  text-decoration: none;
}

.store-button i {
  margin-right: 8px;
}

footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e6e6e0;
  text-align: center;
}

footer h2 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.resume {
  margin-bottom: 25px;
}

.resume-button {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  color: #2a2a2a;
  text-decoration: none;
  border: 1px solid #e6e6e0;
  font-size: 0.9rem;
  transition: background-color 0.2s;
}

.resume-button:hover {
  background-color: #f0f0f0;
  text-decoration: none;
}

.resume-button i {
  margin-right: 8px;
}

.social-links {
  font-size: 0.9rem;
}

.social-links a {
  color: #00008B;
  text-decoration: none;
  margin: 0 5px;
}

.social-links a:hover {
  text-decoration: underline;
}

.social-links i {
  margin-right: 5px;
}

@media (max-width: 768px) {
  body {
    padding: 20px;
  }
  
  .container {
    padding: 20px;
  }
  
  .store-buttons {
    flex-direction: column;
  }
  
  .store-button {
    width: 100%;
    justify-content: center;
  }
  
  .social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .social-links a {
    margin: 5px 0;
  }
}

.web-projects {
  margin: 40px 0;
}

.project-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.project-button {
  display: inline-flex;
  align-items: center;
  padding: 8px 15px;
  background-color: #f0f0f0;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.project-button:hover {
  background-color: #e0e0e0;
}

.project-button i {
  margin-right: 8px;
}
