body {
  background-color: #121826;
  background-image: url("resources/Background_image.svg");
  min-height: 100vh;
}

.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 60px;
}

h1 {
  font-family: 'Outfit', sans-serif;
  color: #E5E7EB;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: center;
  margin-inline: 0;
}

.subtitle, h3 {
  font-family: 'Outfit', sans-serif;
  color: #9DA3AE;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 0;
}

h2{
    font-family: 'Outfit', sans-serif;
    color: #E5E7EB;
    font-size: 20px;
    font-weight: 600;
    text-align: left;
    margin-left: 24px;
    margin-bottom: 12px;
    margin-top: 0;
}

p {
    font-family: 'Outfit', sans-serif;
    color: #9DA3AE;
    font-size: 16px;
    font-weight: 400;
    margin-top: 0;
    margin-left: 24px;
    margin-right: 24px;
    margin-bottom: 16px;
    text-align: left;
}


.contenedor {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-bottom: 5%;
  flex: 1;
}

.cuadro {
  background-color: #212936;
  width: 350px;    
  min-height: 440px;
  border-radius: 24px;
  padding: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}

.cuadro:hover {
  transform: translateY(-6px) scale(1.03);
}

.emoji-circle{
  display: flex;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  margin-left: 24px;
  margin-top: 24px;
  margin-bottom: 20px;
  font-size: 25px;
  
  
}
.cuadro-img {
  width: calc(100% - 48px);
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 24px;
  margin-top: auto;
}

.author-info {
  font-size: 14px;
  text-align: center;
  margin-top: 16px;
  color: rgb(55, 65, 81);
}
