#Hero-section {
  margin-top: 14vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
#Hero-section img {
  height: 20vh;
  border: 2px solid var(--accent);
  border-radius: var(--border-radius);
}
#Hero-title {
  font-family: var(--font-monospace);
}
#Hero-title h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  margin: 0;
  color: var(--red-secondary);
}
#Hero-title p {
  margin: 0 10px;
  text-align: justify;
  text-align-last: justify;
  font-size: clamp(0.7rem, 2vw, 1rem);
  color: var(--accent-secondary);
}
#Hero-description {
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.3rem;
  line-height: 1.4;
  margin: 20px 50px;
  border: 2px solid var(--red-secondary);
  border-radius: var(--border-radius);
  padding: 20px;
}
#Hero-description strong {
  color: var(--accent);
}
@media (max-width: 560px) {
  #Hero-section {
    flex-direction: column;
  }
  #Hero-description {
    margin: 20px 0;
    font-size: 1.1rem;
    line-height: 1.3;
  }
}
#Footer-widgets {
  display: flex;
  justify-content: center;
  margin-top: 100px;
}
#Footer-widgets img {
  height: 10vh;
}
