

.background-top-row {
    background-color: hsl(228, 4%, 27%, 0.6);
        
}
* {
  padding: 0;
    margin: 0;
    text-decoration: none;
    box-sizing: border-box;
    border: none;
}

body{
    font-family: sans-serif;
    background: url(../img/about.jpg);
    background-size:cover;
    background-repeat: no-repeat;
}

.container {
    display: flex;    
    justify-content: center;
    height: 100vh;
    align-items: center;
}

.card {
    border-radius: 1rem;
    box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    margin: 1.5rem;
    overflow: hidden;
    width: 15rem;
    backdrop-filter: blur(2rem);
    background-color: rgba(255, 255, 255, .3);
    border: .1rem solid rgba(255, 255, 255, 0.18);
    color: var(--white-text);
}

.card h6 {
    letter-spacing: .1rem;
    text-transform: uppercase;
}


.card h2{
    letter-spacing: .1rem;
    margin: 1rem 0;
    
}


.top-row {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.top-row i{
    font-size: 2rem;
    
} 

.content{
    padding: 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    justify-content: space-between;
    
}

.content p {
    font-size: 1rem;
    color: black;
}

.valor li{
    display: inline-block;
}

.valor {
    padding: 10px;
}

.valor li img {
    color: black;
    text-align: center;
}











.top-row img{
    width: 50%;
    height: 50%;    
}













@media(max-width:1030px){
    .container{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: auto;
    }
}




