@font-face {
    font-family: pixel;
    src: url(https://dl.dropbox.com/s/rwu0nhwc3rnbaqm/mspixel.otf);
    }

    @font-face {
        font-family: minecraftia;
        src: url(https://dl.dropbox.com/s/qrro6u0lx00x66j/Minecraftia-Regular.ttf?);
        }

body {
    font-family: pixel !important;
}

.lines {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 300;
    opacity: 0.05;
    }
     
    .lines:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, .5) 51%);
    background-size: 100% 4px;
    will-change: background, background-size; animation: scanlines 0.2s linear infinite;
    }
     
    @keyframes scanlines {
    from {
    background: linear-gradient(to bottom, transparent 10%, rgba(0, 0, 0, .5) 51%); background-size: 100% 4px; }
    to {
    background: linear-gradient(to bottom, rgba(0, 0, 0, .5) 50%, transparent 51%);
    background-size: 100% 4px;
    }
    }

    .one {
        width: 300px;
        height: 600px;
        position: relative;
        left: 30rem;
        top: 3.25rem;
    }

    .text {
        background: #E8E8D8;
        width: 100%;
        padding: 10px;
        border-right: 1px solid black;
        border-left: 1px solid black;
        box-sizing: border-box;
        font-size: 1.25em;
    }

    .intro {
        width: 100%;
        padding: 10px;
        display: flex;
        border-right: 1px solid black;
        border-left: 1px solid black;
        box-sizing: border-box;
        background-color: white;
    }

    .right-intro {
        margin-top: 22px;
    }

    .outer-box {
        padding-left: 10px;
        padding-right: 10px;
        box-sizing: border-box;
        border-right: 1px solid black;
        border-left: 1px solid black;
        border-bottom: 1px solid black;
        border-radius: 0px 0px 15px 15px;
    }

    .inner-box {
        border: 1px solid black;
        width: 100%;
        box-sizing: border-box;
    }

    .button {
        padding: 3px; 
        border: 1px solid black; 
        text-align: center;
        width: 97%;
        box-sizing: border-box;
        margin: 0 auto;
        margin-top: 4px;
        margin-bottom: 4px;
        font-size: 1.25em;
    }

    .flex {
        display: flex;
        margin-top: 5px;
        text-align: left;
    }

    .center {
        text-align: center;
    }

    .two {
        width: 350px;
        height: 400px;
        position: absolute;
        left: 40rem;
        top: 15.25rem;
        z-index: 999;
    }
  
  .bubble {
  border-radius: 0px 25px 25px 25px;
  padding: 10px;
  background: #aeb9cc;
  box-shadow: inset 13px 0px 6px -10px rgb(66 66 66 / 56%), inset -13px 0px 6px -10px rgb(66 66 66 / 56%), inset 0px 13px 6px -10px #ffffff, inset 0px -13px 6px -10px rgb(66 66 66 / 38%);
  margin-bottom: 10px;
  border: 1px solid black;
  width: 75%;
}

.email-header {
    background: #fffdd0;
    padding: 5px;
    padding-left: 10px;
    box-sizing: border-box;
    width: 95%;
    margin: 0 auto;
    margin-top: 5px;
    border-left: 1px solid black;
    border-right: 1px solid black;
    border-top: 1px solid black;
    border-radius: 20px 20px 0px 0px;
}

@keyframes blinkingText {
    0% {
      color: #000000;
    }
 
    49% {
      color: #000000;
    }
 
    60% {
      color: white;
    }
 
    99% {
      color: white;
    }
 
    100% {
      color: #000000;
    }
  }

  .flex-two {
    display: flex;
    width: 98%;
    margin: 0 auto;
    padding: 5px;
    box-sizing: border-box;
  }

  .three {
    width: 400px;
    height: 125px;
    position: absolute;
    left: -5rem;
    top: 5rem;
    z-index: 999;
}

.split {
    background: linear-gradient(90deg, rgba(232, 232, 216, 1) 40%, rgba(255, 255, 255, 1) 0%); 
    border-left: 1px solid black;
    border-right: 1px solid black;
    border-bottom: 1px solid black;
    border-radius: 0px 0px 15px 15px;
    height: 100%;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
}

.img2 {
    /* album's cover image u can change the size! */
    position: relative;
    width: 100px;
    height: 100px;
    background-color: black;
    color: black;
    z-index: 999;
    border: 1px solid black;
    border-radius: 5px;
  }

.img1 {
    /* cd image u can change the size too */
    position: absolute;
    width:auto;
    height:90px;
    left: 65px;
    top: 48px;
    z-index: 800;
    -webkit-animation: spin 2s linear infinite;
    -webkit-animation: spin 4s linear infinite;
    -moz-animation: spin 4s linear infinite;
    animation: spin 4s linear infinite;
  }

  @-moz-keyframes spin {
    100% {
      -moz-transform: rotate(360deg);
    }
  }

  @-webkit-keyframes spin {
    100% {
      -webkit-transform: rotate(360deg);
    }
  }

  @keyframes spin {
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }

  .three-right {
    margin-left: 3.75rem;
  }

  mark {
    background: none;
    font-family: minecraftia;
    font-size: 3em;
    -webkit-text-stroke: 1px black;
    color:#79B8EC;
  }

  .marquee {
    margin-top:-15px;
    font-size: 2em;
  }