* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat';
}

.header-img {
  width: 85px;
  padding-right: 10px;
}

.gallery-img {
  width: 150px;
}

.social-img {
  width: 25px;
  margin-left: 10px;
}

.header-container {
  display: flex;
  background-color: #323333;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}

h1 {
  color: rgb(238, 238, 238);
  font-size: 1.3rem;
}

h3 {
  color: rgb(194, 194, 194);
  font-size: 1rem;
  text-decoration: underline;
}

h3:hover {
  color: #0fa36b;
}

.text-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  margin-top: 12px;
  width: 100%;
}

p {
  color: #232525;
  font-size: 1rem;
  text-align: justify;
  text-indent: 20px;
  padding: 10px;
  width: 90%;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 10px auto 13px auto;
  max-width: 600px;
}

.gallery-card {
  align-items: center;
  background-color: rgb(241, 241, 241);
  border-radius: 15px;
  box-shadow: 2px 3px rgba(161, 161, 161, 0.5);
  display: flex;
  flex-direction: column;
  height: 220px;
  justify-content: center;
  margin: 0 10px 15px 0;
  width: 180px;
}
.perfil-img {
  border-radius: 100%;
  padding: 20px;
}

 hr {
  margin-top: 10px;
  width: 25%;
}

footer {
  align-items: center;
  display: flex;
  justify-content: center;
} 