/* Reset */
html,
body,
div,
h1,
p,
a,
img {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

/* Font-face */
@font-face {
  font-family: "Poppins";
  src: url("./fontes/Poppins-Regular.woff2") format("woff2"),
    url("./fontes/Poppins-Regular.woff") format("woff"),
    url("./fontes/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Body */
body {
  background-color: #f5f5f5;
  font: 1.125rem/1.75rem "Poppins";
  color: #141414;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  min-width: 20rem; /* 320px */
  max-width: 60rem; /* 960px */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.logo {
  margin: 1rem 0;
}

h1 {
  font-size: 1.25rem; /* 20px */
  line-height: 1.75rem; /* 28px */
  text-transform: uppercase;
  font-weight: 600;
  color: #141414;
  border-top: 0.125rem solid #141414;
  border-bottom: 0.125rem solid #141414;
}

.ilustracao {
  max-width: 25rem; /* 400px */
}

p {
  margin-bottom: 1rem;
}

a {
  color: #7A7A7A;
}

a:hover {
  color: #292929;
}