* {
    font-family: 'Press Start 2P', cursive;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #31195b; 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #683ab7;;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555; 
  }

body {
    background-color: #683ab7;
    color:#ffffff55
}

.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.main-container > p {
    text-align: center;    
}

textarea {
    margin-inline: 20px;
    background-color: #5c31a5;
    width: 80%;
    outline: none;
    border: none;
    padding: 20px;
    color: #fff;
    font-size: 1.5em;
    margin-block-end: 50px;
    font-family: revert;
}

.title {
    font-size: 2em;
    padding-block: 30px;
    text-align: center;
}

@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    * {
        font-size: 0.8em;
    }
  }