body {
  background-color: rgb(16, 1, 29);

  .main-container {
    padding: 1em;
    text-align: center;

    .logo-wrapper {
      position: relative;
      display: inline-block;

      img:first-of-type {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;

        /* Halo effect */
        filter: blur(40px);
        transform: scale(1.1);
        opacity: 0.8;
      }

      img:last-child {
        position: relative;
        z-index: 2;
        width: 100%;
      }

      margin-bottom: 2em;
    }
  }
}
