*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


body{
    background-color: #184922;
    color: white;
      font-family: "Poppins", sans-serif;
     font-optical-sizing: auto;
}

h2{
    font-size: 1.5rem;
    line-height: 1.5rem;
}

h3{
    font-size: 1rem;
    line-height: 1.2rem;
}

p{
    line-height: 1.5rem;
}

.contenedor{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}
    
.subcontenedor{
    max-width: 500px;
}

.subcontenedor img{
    width: 100%;
    max-width: 350px;
}


.wsap img{
    max-width: 90px;
    padding: 20px;
    transition: transform 0.3s;
}

.wsap img:hover{
    transform: scale(1.1);
   
}