@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&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-color: #000139;
    background-image: url(bg.jpg);
    background-size: cover;
    color: #fff;
}

body { 
    text-align: center; 
    padding: 150px; 
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

h1 { 
    font-size: 2.5rem; 
    font-weight: 700;
    margin-bottom: 4rem;
    color: #00e1f5;
}

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

.i-logo {
    display: block;
    width: 20rem;
    height: 20rem;
    background: url(logo.svg) 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 5rem;
    margin: 0 auto; 
    background: #000139;
    box-shadow: inset 2px 2px 10px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

#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;
}

footer {
    width: 100%;
    max-width: 65rem; 
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    transform: translateY(5rem);
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer a { 
    display: block;
    font-size: 1.5rem; 
    color: #00e1f5;
    font-weight: 600;
}

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