
body{ 
    font-family: 'Roboto';
    color: #666666;
} 

.container-boxes{
    max-width: 1000px;
    margin: 0 auto; 
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px; 
}

.box-group{ 
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 15px;
    border:1.5px solid transparent;
} 
.box-group:hover{ border: 1.5px solid #9a4848;}
/* 
.box-group--active{
  border-color: var(--hover-border);
} */

.title-row{
    display: flex; 
    align-items: center; 
    gap: 25px;
    font-weight: bold;
}

.title{
  margin: 0; 
  font-size: 22px; 
  font-family: 'Roboto';
  color: #222;
}

.desc{
    color: #555;
    font-size: 14px;
    line-height: 1.4; 
    margin: 20px 0;
}

.link{
    text-decoration: none; 
    font-weight: bold;
    color: slateblue; 
    border-radius: 5px; 
}

.icon--blue{
    background-color:  #0a609a; 
} 

.icon{
    border-radius: 50px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    color: white; 
    width: 50px;
    height: 50px;
    display: flex;  
    justify-content: center;
    align-items: center;
}

.icon i{
    font-size: 25px;
    
}


.icon--grey{
    background-color:  #3498db;
} 

.icon--purple{
    background-color: #9b59b6;
} 

.icon--green{
    background-color: #2ecc71;
}

.icon--brown{
    background-color: #8f6139;
} 

.icon--yellow{
    background-color: #f1c40f;
} 