html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
   -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
}

body {
  height: 100vh;
  background-color: #041017;
  font-family: "Montserrat", serif;
  line-height: 1;
  font-weight: 400;
  overflow-x: hidden;
  margin: 0;
  color: #ffffff;
}

.container {
  max-width: 120rem;
  margin: 0 auto;
}

.skill-tree {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#root-node {
  box-shadow: 0px 0px 4px rgba(38, 165, 228, 1);
}
.skill-head {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
}

.node {
  margin: 2rem;
  position: relative;
  transition: all 0.4s;
  cursor: pointer;
}
.second > .skill-content {
  pointer-events: none;
}
.node:hover,
.node:active {
  box-shadow: 0 0 0 2px #26a5e4;
}

.skill {
  align-self: flex-start;
  padding: 2rem;
  border-radius: 2px;
  cursor: pointer;
  text-align: center;
  border: 1px solid #444;
  transition: all 0.3s ease;
}

.skill-1 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.sub-skills {
  position: relative;
  display: flex;
  flex-direction: column;
  display: none;
  transition: all 0.3s;
  transform: translateY(-10%);
}
.sub-skills a {
  width: 100%;
  text-decoration: none;
  color: #ffffff;
}

/* Lines between the nodes */
.node:before {
  content: "";
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  border-left: 2px solid #444;
  height: 2rem;
}

.node > .node:before {
  top: -1rem;
}

/* Connect the root to the first level nodes */
#root-node > .node:before {
  top: 0;
  height: 0;
}
.link {
  transition: all 0.2s;
}

.link:hover,
.link:active {
  box-shadow: inset 0 0 0 2px #26a5e4;
}

.skill-head-icons {
  display: flex;
  align-items: center;
  justify-content: center;
}
.column {
  flex-direction: column;
}

.icon {
  width: 6rem;
  height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #343434;
}

.icon img {
  width: 4rem;
  height: 4rem;
}
.bold {
  font-weight: 600;
}
.skill-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.getcv {
  text-decoration: none;
  font-size: 2.2rem;
  padding: 8px;
  color: #ffffff;
  border: 2px solid #444;
}

