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

body {
  background-color: #000;
  animation: fadeToWhite 4s ease-in-out forwards;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
}

@keyframes fadeToWhite {
  from {
    background-color: #000;
  }

  to {
    background-color: #fff;
  }
}

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

.logo {
  width: 600px;
  max-width: 70vw;
  height: auto;
  color: #000;
  animation: zoomIn 6s ease-out forwards;
  transform: scale(0);
}

@keyframes zoomIn {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}