.text {
    display: flex;
    flex-direction: column;
    color: white;
    margin-left: 25px;
    margin-right: 25px;
    text-wrap: balance;
}

.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%;
    height: auto;
    margin-left: 100px;
    transition: 0.2s;
}

body {
    background-color: cornflowerblue;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#star-pattern {
    background-image: url(star.png);
    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 50s linear infinite;
    will-change: background-position;
}

@keyframes pan {
    0% {
      background-position: 0% 100%;
    }
    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;
}

iframe {
    height: 400px;
}

/* 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 {
    margin-top: 400px;
    width: 50%;
  }
  body {
    overflow-y: auto;
  }
  #star-pattern {
    height: 210%;
  }
}

