* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(
    90deg,
    rgb(204, 51, 51, 1) 10%,
    rgba(177, 54, 66, 1) 100%
  );
  background-size: 500% 500%;
  -webkit-animation: BackgroundColor 8s ease infinite;
  -moz-animation: BackgroundColor 8s ease infinite;
  animation: BackgroundColor 8s ease infinite;
}

@-webkit-keyframes BackgroundColor {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@-moz-keyframes BackgroundColor {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes BackgroundColor {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.container {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  width: 30vw;
  height: auto;
  display: block;
  pointer-events: none;
}
