.container{
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.container .inner-content{
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.container .inner-content .ink-logo{
    width:50%;
    height: auto;
}
.container .inner-content .soon-title{
    color: #fff;
    font-size: 2rem;
    position: relative;
    text-transform: uppercase;
    margin-top: 3rem;
    letter-spacing: .7rem;
    font-weight: 300;
}
.container .inner-content .soon-title::before{
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background: #C32B5E;
    right: -1.5rem;
    bottom: -2px;
    
}

.highlight{
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgb(8, 20, 65);
    filter: blur(150px);
    transform-origin: center center;
    transform: translateX(-50%) translateY(-50%);
}

#cursor {
    position: absolute;
    text-align: center;
    width: 60px;
    height: 60px;
    z-index: 100000000;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    pointer-events: none;
    mix-blend-mode: exclusion;
  }
  
  #cursor .cursor_bg {
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: block;
    left: 0;
    top: 0;
    mix-blend-mode: exclusion;
    background: transparent;
    border: 2px solid #fff;
    width: 80px;
    height: 80px;
    border-radius: 80px;
    box-sizing: border-box;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transform: scale(0.5) translate(-100%, -100%);
    transform: scale(0.5) translate(-100%, -100%);
  }
  
  #cursor.is-big .cursor_bg {
      background: #fff;
    -webkit-transform: scale(1.5) translate(-25%, -25%);
    transform: scale(1.5) translate(-25%, -25%);
  }

  .social-links{
      width: 200px;
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      margin-top: 5rem;
  }

  .social-links svg{
      width: 30px;
      height: 30px;
      fill: #fff;
  }