html,
body, h1, button {
  padding: 0;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
    Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}

textarea{
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
    Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size:1.1rem;
  font-weight:490;
  line-height:2rem;
}
a {
  color: inherit;
  text-decoration: none;
}

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

h1{
  font-size:2.5rem;
  font-weight:500;
}
h2{
  font-size:2.2rem;
  font-weight:500;
}
h3{
  font-size:1.5rem;
  font-weight:500;
}
@media (max-width:425px){
  h1{
    font-size:2rem
  }
}
p, a, li{
  /* font-size:1.2rem; */
  font-size:1.05rem;
}
@media (max-width:600px){
	h2{
		font-size:1.7rem;
	}
}
strong{
  font-weight:500;
}
p{
  line-height: 2rem;
}
.whatsappIcon{
  position:fixed;
  right:5%;
  bottom:5%;
  width:max-content;
  z-index:2;
}
@media (max-width:425px){
  .whatsappIcon{
      bottom:20px;
  }
}
.whatsappIcon img{
  width:70px;
  height:70px;
  box-shadow:0px 0px 2px 3px rgb(21, 138, 201);
  border-radius:35px;
  animation: glow 1s ease-in-out infinite;
  animation-direction:alternate-reverse;
}
@keyframes glow {
  from{
      box-shadow:0px 0px 2px 3px rgb(21, 138, 201);
  }
  to {
      box-shadow:0px 0px 2px 3px rgba(21, 138, 201, 0.022);
  }
}