@import url('https://fonts.googleapis.com/css2?family=Special+Elite&display=swap');

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    background: black;
    font-family: 'Roboto', sans-serif;
}
  
#image {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100%;
    max-height: 100%;
    transform: translate(-50%, -50%);
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}


#textbox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: rgba(119, 30, 57, 0.35); /* Semi-opaque background */
    border: 1px solid white;
    text-align: left;
    color: white;
    font-family: 'Special Elite', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.center-heading {
    text-align: center;
  }
  
