* {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

li {
  list-style: none;
  padding-left: 5px;
}

h1 {
  letter-spacing: 2px;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
}

h3 {
  letter-spacing: 2px;
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
  font-weight: 400;
}

h2 {
  color: #9B999B
}

.support {
  color: #9B999B;
  padding-top: 5px;
  padding-bottom: 5px;
}

.support-hint {
  border-bottom: 1px solid #9B999B;
}

.article-item-title {
  padding-top: 5px;
}

.article-item-title:hover {
  border-bottom: 1px solid #9B999B;
  ;
}

h2,
p {
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
}

.underscore-animation {
  animation: flash 1s infinite;
  opacity: 0;
}

@keyframes flash {

  0%,
  49.9%,
  100% {
    opacity: 0;
  }

  50%,
  99.9% {
    opacity: 1;
  }
}

.main-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.name-description-header {
  margin-top: 70px;
}

.page-title {
  margin-bottom: 65px;
}

.supporting-text {
  margin-top: 20px;
  margin-bottom: 20px;
}

.text-focus {
  border: 2px solid black;
  border-radius: 5px;
  padding: 5px;
  background-color: black;
  color: white;
}

.list-description-header {
  display: flex;
  flex-direction: row;
  gap: 100px;
}

.list-description-header {
  margin-top: 25px;
}

.first-list {
  padding-bottom: 10px;
}

.articles-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 25px;
}

.article-item {
  padding-bottom: 10px;
  padding-left: 5px;
}

.banner-container {
  margin-top: 35px;
  display: flex;
  flex-direction: row;
  gap: 25px;
  border: 1px black;
  padding: 25px;
  background-color: #f6f6f6;
}

.banner-container .icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.first-list li {
  display: inline;
  border-bottom: 2px solid #9b999b;
}

.banner-text-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
}

.linkedin-link:hover {
  border-bottom: 1px solid black
}

.articles-container-reports {
  padding-top: 35px;
  width: 650px
}

.linkedin-link a {
  text-decoration: none;
  color: inherit;
}

.emoji-item {
  font-size: 50px;
}

.footer-container {
  margin-top: 50px;
}

.footer-item p {
  color: #9b999b;
}

@media only screen and (max-width: 767px) {
  .articles-container-reports {
    width: 350px
  }
}