main {
    width: 100%;
    color: white;
}
body {
    background-image: url(https://steamuserimages-a.akamaihd.net/ugc/942828818032559278/442E2D51A00255BF30E74C2A6CEAB6C0BB7A346A/?imw=1024&imh=575&ima=fit&impolicy=Letterbox&imcolor=%23000000&letterbox=true);
    background-size: 100%;
    background-attachment: fixed;
    color: white;
    animation: idroidLoad 5s;
    animation-delay: 0.5s;
}
.top {
border-radius: 15px 15px 0px 0px;
}

.bottom {
    border-radius: 0px 0px 15px 15px;
}

.basic {
    color: white;
    background-color: rgba(0, 0, 0, 0.2);
}

article{
    max-width: 800px;
    margin: auto;
    background-color: rgba(0, 0, 0, 0.5);
    border-width: 500px 0px;
  }

  article h2{
    padding: 1.68rem;
  }

  article p{
    padding: 0.84rem 1.68rem ;

  }
  ul {
    list-style-type: none;
  }

  li {
    padding: 0.482rem 1.68rem ;
  }
  hr {
    border-color: #c3ffff81;
    width: 100%;
    border-width: 2px;
    border-style: solid;
  }

  #title{
    text-align: center;
    padding: 4.3rem;
  }

  p a {
    color: #c3ffff;
  }


  #scanline {
    width: 100%;
    height: auto;
    position: fixed;
    pointer-events: none;
    animation: scanLine 15s linear infinite;
    top:0;
    bottom:0;
    left:0;
    right:0;
    overflow:hidden;
    opacity: 60%;
  }

  #scanline embed {
    width: 100%;
    height: auto;
  }

  #figma {
    height: 50px;
  }

  @keyframes scanLine {
  0%{
    transform: translateY(1000%);
  }
    100%{
      transform: translateY(-200%);
  }
  }

  @keyframes idroidLoad {
    0%{opacity: 0%;}

    100%{opacity: 100%;}
  }