*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 62.5%; /* 1rem = 10px */
  height: 100%;
}

body {
  font-family: 'Raleway', sans-serif;
  display: flex;
  flex-direction: column;
  height: 100%;
}

h4,
p {
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 2rem;
  text-align: center;
}

@media screen and (min-width:768px) {
  h4 {
    font-size: 3rem;
  }
}

p {
  font-size: 1.6rem;
}

@media screen and (min-width:768px) {
  p {
    font-size: 2rem;
  }
}

section {
  width: 100%;
  height: 100%;
}

footer {
  background-color: #000;
  color: white;
  width: 100%;
  height: 5rem;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer p {
  font-size: 1.2rem;
  margin: 0;
}

.container {
  max-width: 144rem;
  height: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

img {
  width: 100%;
  max-width: 60%;
  margin-bottom: 3rem;
}

@media screen and (min-width: 768px) {
  img {
    max-width: 45%;
  }
}

@media screen and (min-width: 1024px) {
  img {
    max-width: 30%;
  }
}

.textos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}