* {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
}

body {
  width: 100vw;
  height: 100vh;
  background-image: url('./bg.jpg');
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
}

body, button {
  font: 400 1.2rem 'Italiana', serif;
}

#content {
  width: 960px;
  height: 100vh;
  margin: 0 auto;
}

#container {
  width: 720px;
  padding: 20px;
  background-color: #00000055;
  border-radius: 3px;
}

#container p {
  font-size: 1.5rem;
  margin-top: 20px;
  color: #f0f0f0;
}

header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

header img {
  max-height: 200px;
}

.botao-wpp-container {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #25d366;
  font-weight: bold;
  padding: 1rem 2rem;
  border-radius: 3px;
  width: 150px;
}

.botao-wpp-container img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.botao-wpp {
  text-decoration: none;
  color: #eee;
  
}

.botao-wpp svg {
  fill: #eee;
  color: #eee
}

@media (max-width: 1080px) {
  html {
    font-size: 93.75%;
  }

  body {
    background-size: auto 100%;
    background-position: center bottom;
  }

  #content {
    width: 100%;
    height: 100vh;
  }

  #container {
    width: 100%;
  }
}

@media (max-width: 720px) {
  html {
    font-size: 87.5%;
  }

  header img {
    max-height: 200px;
    max-width: 100%;
  }

  #container {
    min-width: 300px;
  }
}

