.text {
    display: flex;
    flex-direction: column;
    color: white;
    margin-left: 25px;
    margin-right: 25px;
    text-wrap: balance;
}

.subhead {
    font-size: 10px;
    color: white;
}

.back {
    display: flex;
    flex-direction: column;
    color: white;
    margin-left: 25px;
    transition: 0.3s;
    text-wrap: balance;
}

.back:hover {
   font-size: 20px;
}

.box {
    background-color: black;
    width: 30%;
    margin-left: 100px;
    transition: 0.2s;
}

body {
    background-color: greenyellow;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#star-pattern {
    background-image: url(skull.gif);
    background-size: 10%;  
    position: absolute;
    left: 50%;
    top: 0px;
    translate: -50% 0%;
    z-index: -1;
    height: 100%;
    width: 100%;
    min-width: 1200px;
    opacity: 0.25;
    animation: pan 45s linear infinite;
    will-change: background-position;
}

@keyframes pan {
    0% {
      background-position: 0% 0%;
    }
    100% {
      background-position: 100% 0%;
    }
  }

h1 {
    font-family: Arial, Helvetica, sans-serif;
}

p {
    font-family: Arial, Helvetica, sans-serif;
}

h2 {
    font-family: Arial, Helvetica, sans-serif;
}

h3 {
    font-family: Arial, Helvetica, sans-serif;
}

/* Track */
::-webkit-scrollbar-track {
  background: #00000000; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #4b4b4b; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #8b8b8b; 
}

@media (max-width: 800px) {
  .box {
    width: 50%;
  }
  body {
    overflow-y: auto;
  }
  #star-pattern {
    height: 140%;
  }
}

