
:root {
  --bg: #fdf6ec;
  --accent: #e07a5f;
  --accent-dark: #c2593f;
  --text: #2b2b2b;
  --text-muted: #5a5a5a;
  --card-bg: #5a5a5a;
  --radius: 16px;
  --shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 22px rgba(0, 0, 0, 0.14);
}

body {
    background-color: var(--bg);
    padding: 20px 40px;
}

#skills {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

#title {
  margin: 30px auto;
}

#title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 10px auto 0;
  border-radius: 2px;
}

#summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 60vw;
    margin: 0 auto;
}

#myself {
  text-align: center;
}

#icons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
}

.icon:hover {
  transform: translateY();
}

.space-between {
  display: flex;
  justify-content: space-between;
}

#skills-container {
  display: flex;
  justify-content: center;
}

.skill-card {
  display: flex;
  flex-direction: column;
  padding: 10px;
  border: 1px black solid;
  margin: 0 50px;
  border-radius: 16px;
  background-color: var(--card-bg);
}

h3 {
  margin: 0 auto;
}
