/*global*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

@import url(./assets/css/header.css);
@import url(./assets/css/hero.css);
/* @import url(./assets/css/profi.css); */
/* @import url(./assets/css/gestao.css); */
/* @import url(./assets/css/footer.css); */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  font-size: 10px;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  scroll-behavior: smooth;
  background-color: #000;
  /* background-image: linear-gradient(60deg, #717171 0%, #000 100%); */
}
a {
  text-decoration: none;
}
.container {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

p {
  color: white;
  font-size: 1.4rem;
  margin-top: 5px;
  line-height: 2.5rem;
  /*font-weight: 100;*/
  letter-spacing: 0.05rem;
}

/*nomes com divisão de cores*/
.brand h1 {
  font-size: 3rem;
  text-transform: uppercase;
  color: white;
}
.brand h1 span {
  color: red;
}

@media only screen and (max-width: 768px) {
  .brand h1 {
    font-size: 2rem;
  }
}

/* @media only screen and (min-width: 420px) and (max-width: 896px) {
  .brand h1 {
    font-size: 2.5rem;
  }
}

@media only screen and (min-width: 768px) {
  h1.section-title {
    font-size: 6rem;
  }
} */
