/*
 Theme Name: Hestia Hijo
 Theme URI:    
 Description:  
 Author:       
 Author URI:     
 Template: hestia
 Version:      
 License:      
 License URI:  
 Tags:     
 Text Domain:
*/
/* =Aquí empieza la personalización de tu tema */

.main-sections {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  grid-gap: 40px;
  padding: 20px;
}

.card-section {
  box-shadow: 2px 2px 12px 4px gray;
  border-radius: 4px;
}

@media (max-width: 768px){
  .main-sections {
    grid-template-rows: repeat(4, 1fr);
    grid-template-columns: 1fr;
  }

  .hestia-title {
    font-size: 24px !important;
  }
}