body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #000;
  width: 100vw;
  height: 100vh;
  padding: 0;
  margin: 0;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
  background-image: url(assets/backgroung-desktop.jpg);
  background-size: cover;
  background-position: center;
}

@media (max-width: 550px) {  
  body {
    background-image: url(assets/background-mobile.png);
    background-size: cover;
    background-position: center;
  }
}

.logo {
  width: 100%;
  max-width: 350px;
  height: auto;
}

h1 span {
  font-weight: 300;
}

.social {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 30px;
  align-items: center;
}

.social li a{
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFF;
}

.social li a img {
  filter: invert(1);
}

.linkwhats {
  color: #FFF;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.whats {
  width: 32px;
  height: auto;
  filter: invert(1);
}