

.home-content {
  height: 67vh;
  display: grid;
  grid-template-columns: 9fr 3fr 1fr;
  align-items: center;
}

.home-content h1 {
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.3;
}


.home-content h3 {
  font-size: 3.2rem;
  font-weight: 700;
  
}

.home-content p {
  font-size: 1.6rem;
  margin: 2rem 0 4rem;
  text-align: justify;
  width: 90%;
}

#talk {
  background: transparent;
  color: var(--main-color);
}

#talk::before {
  background-color: var(--main-color);
}

#talk:hover {
  color: var(--bg-color);
}

#profile:hover {
  color: var(--main-color);
}

.home-sci {
  width: 50%;
  height: 70%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  margin: 36px 0px 36px 36px;
  align-items: flex-end;
}

.home-sci a {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 0.2rem solid var(--main-color);
  border-radius: 50%;
  color: var(--main-color);
  font-size: 3rem;
  z-index: 1;
  overflow: hidden;
  transition: 0.5s;
}

.home-sci a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  z-index: -1;
  background-color: var(--main-color);
  transition: 0.5s;
}

.home-sci a:hover {
  color: var(--bg-color);
}

.home-sci a:hover::before {
  width: 100%;
}
