/* Reset básico de CSS */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "urbane", sans-serif;
  line-height: 1.5;
  background-color: #fff;
  color: #000;
  cursor: default;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

table {
  border-collapse: collapse;
  width: 100%;
}

button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
}

input, textarea {
  border: none;
  outline: none;
  font: inherit;
}

textarea {
  resize: vertical;
}
