@import url("variaveis.css");

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

  font-family: var(--fonte-principal);
  transition: 300ms;
  white-space: unset;

  /* text-overflow: ellipsis; */
  /* color: wheat; */
}

html,
body {
  width: 100%;
  scroll-behavior: smooth;
}

body {
  background-image: var(--body_fundo-degrade);
  min-height: 100vh;
  display: flex;
  overflow-x: hidden;
}

.flex {
  display: flex !important;
}
