

/* About */
.content {
   height: calc(90dvh - 4rem);
    display: flex;
    justify-content: center;
    align-items: center;   

}

.hero__link{
    color: var(--primary-text);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s;
    font-size: 1.2rem;
    font-weight:lighter;
}

.hero {
max-width: 600px;
padding: 1rem;
}

h1 {
  color: var(--primary-text);
}

a {

    text-decoration: none;
}
.red-period::after {
  content: ".";
  color: red;
  margin: 0; 
  padding: 0;
}

.hero__list {
    display: flex;
    justify-content:space-between;
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero__text{
  font-size: 1.4rem;
}

.hero__item a{
    padding: 0;
  
}

.hero__item:hover {
    border-bottom: 2px solid var(--primary-text);
 transition: border-bottom 0.1s;
 scale: 1.1;
 
}

@media (max-width: 850px) {
  .hero__list{
      flex-direction: column;
      gap: 0.5rem;

    }
    .hero {
      text-align: center;
      
  }


}
