/* Variables
  **********************************/
@import url("variables.css");
/* ******************************* */

.btn,
.button {
  border: 0;
  border-radius: 5px;
  padding: 0 1.2em;
  text-decoration: none;
  font-size: calc(var(--text-general) - .2rem);
  font-weight: 700;
  display: inline-block;
  transition: all 0.2s;
  cursor: pointer;
  height: 35px;
  color: white;
  background: var(--gris);
  font-family: var(--cormorant);
}

.btn:hover,
.button:hover {
  background: black;
}
