*,::after,::before{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#body {
    height: 100%;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}

#background {
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(/assets/img/nexqmedia_ltd_ic.svg);
    opacity: 0.1;
    width: 100%;
    height: 100%;
    filter: blur(6px);
    -webkit-filter: blur(6px);
}

#NexQMedia {
    width: 40%;
    padding: 17px 20px;
    position: absolute;
    border-radius: 12px;
    background: white;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

p {
  visibility: hidden;
}

@media only screen and (max-width: 700px) {
  #NexQMedia {
    width: 70%;
  }
}