@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300&display=swap');   
   
   /* Reset */
  html, body, div, span, applet, object, iframe,
  h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  a, abbr, acronym, address, big, cite, code,
  del, dfn, em, img, ins, kbd, q, s, samp,
  small, strike, strong, sub, sup, tt, var,
  b, u, i, center,
  dl, dt, dd, ol, ul, li,
  fieldset, form, label, legend,
  table, caption, tbody, tfoot, thead, tr, th, td,
  article, aside, canvas, details, embed,
  figure, figcaption, footer, header, hgroup,
  menu, nav, output, ruby, section, summary,
  time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
  }
  /* HTML5 display-role reset for older browsers */
  article, aside, details, figcaption, figure,
  footer, header, hgroup, menu, nav, section {
    display: block;
  }
  body {
    line-height: 1;
  }
  ol, ul {
    list-style: none;
  }
  blockquote, q {
    quotes: none;
  }
  blockquote:before, blockquote:after,
  q:before, q:after {
    content: '';
    content: none;
  }
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }

html {
    font-size: 10px;
    height: 100%;
    background: #191622;
    color: #fff;
}

body { 
    text-align: center; 
    padding: 150px; 
    font-family: 'Quicksand', sans-serif;
}

h1 { 
    font-size: 2.4rem; 
    font-weight: 600;
    margin-bottom: 4rem;
    color: #4dc7fc; 
}

p {
    font-size: 2rem; 
    margin-bottom: 2rem;
}

.i-logo {
    display: block;
    width: 30rem;
    height: 30rem;
    background: url(logo.png) center no-repeat;
    background-size: contain;
}

#article { 
    position: relative;
    display: flex; 
    flex-direction: column;
    align-items: center;
    text-align: left; 
    width: 90%;
    max-width: 65rem; 
    padding: 0 3rem 3rem;
    margin: 0 auto; 
    background: #191622;
    box-shadow: inset 2px 2px 10px rgba(0, 0, 0, 0.3);
}

#article:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    filter: blur(3rem);
	transform: scale(1.05);
    background: linear-gradient(90deg, #0fffc1, #7e0fff);
    background-size: 200% 200%;
    animation: animateGlow 10s ease infinite;
}

a { 
    display: block;
    font-size: 1.8rem; 
    color: #b0baf7;
    position: absolute;
    bottom: -4rem;
    left: 50%;
    transform: translateX(-50%);
}

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