body {
  background-color: #161618;
  color: white;
  justify-content: center;
  align-items: center;
  align-content: start;
  text-align: start;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  font-family: "Montserrat";
  font-size: 1.3rem;
}

.greeting-title {
  text-align: left;

  margin-left: 0;
  display: inline-block;
}

.row {
  flex-direction: row;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 30px;
}

.large-gap{
    gap:30px;
}

.icon {
  width: 20px;
  height: 20px;
}

.link {
  text-decoration: none !important;
  border-bottom: 1px solid transparent; /* Ensure there's initial spacing for the underline */
  transition: border-bottom 0.3s ease;
  display: inline-block;
  color: white;
  align-items: start;
  font-weight: bolder;
  font-size: 1.3rem;
}

.link a {
  text-decoration: none !important;
  color: white;
}

.link:hover {
  border-bottom: 1px solid #04ca83;

  cursor: pointer;
}

@media only screen and (max-width: 767px) {
  body {
    padding: 0 10px;
  }
}
