* {
  margin: 0;
  padding: 0;
}
html {
  overflow: hidden;
}
.background {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100vw;
}
.backgroundimg {
  position: absolute;
  max-width: 800px;
  display: flex;
  animation: torn 6s 1;
  animation-iteration-count: infinite;
  align-items: center;
  justify-content: center;
}
.logo {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.logo img {
  max-width: 35vw;
  min-width: 220px;
}

@keyframes torn {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* @media (max-width: 1100px) {
  .backgroundimg {
    max-width: 1300px;
  }
} */
