* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-image: url('../imagens/bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}
.container {
  display: flex;
  justify-content: center;
  align-items: center;  
}
.img {
  margin-top: 50px;
  background-repeat: no-repeat;
}
.clear { clear:both; height:1px;}
#centro { width:500px; height:100px; margin:0 auto; background-color:#FFF; }
.footer {
  display: flex;
  height: 130px;
  bottom: 20px;
  position: fixed;
}
.privaci-policy {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.privaci-policy a {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-family: Inter, sans-serif;
  padding: 8px 15px;
  text-decoration: none;
  color: aliceblue;
  border-radius: 25px;
}
.links {
  width: "100%";
}
.links i {
  font-size: 25px;
  color: antiquewhite;
  padding-right: 10px;
}
a:hover {
  color: aqua;
}

/* MEDIA */
@media (max-width: 850px) {
  img {
    width: 350px;
  }
  .links a {
    font-size: 16px;
  }
}
@media (max-width: 650px) {
  img {
    width: 300px;
  }
  .links a {
    font-size: 16px;
  }
}
@media (max-width: 550px) {
  .privaci-policy {
    flex-direction: column;
    margin-bottom: 20px;
  }
}
