@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');
body {
    background-image: url('https://images-assets.nasa.gov/image/PIA16008/PIA16008~orig.jpg');
    color: white;
    font-family: "JetBrains Mono", monospace;
    text-align: center;
}
.result-box {
    background: #1f1f1f;
    padding: 15px;
    border-radius: 8px;
    word-break: break-all; /* Ensures the long hash doesn't break the layout */
    font-family: monospace;
    margin: 10px 0;
    border: 1px solid #ccc;
    text-align: center;
    font-size: 1.5em;
}
.big {
    font-size: 1.25em;
}
.center {
    text-align: center;
}
.dark {
    background: #1f1f1f;
    color: #ccc;
}
.rounded {
    border-radius: 8px;
}
.borderwhite {
    border: 1px solid white;
}
.borderwhite:hover {
    border: 1px solid rgb(56, 56, 202);
}
.textbox:open {
    border: 1px solid rgb(56, 56, 202);
}
.semitransparentbg {
    background-color: rgba(0, 0, 0, 0.5);
}
.glass {
    /* 1. Semi-transparent background */
    background: rgba(255, 255, 255, 0.2);
    
    /* 2. The blur effect */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* For Safari support */
    
    /* 3. Subtle border for depth (optional but recommended) */
    border: 1px solid rgba(255, 255, 255, 0.3);
    
    /* 4. Soft shadow to make it "pop" */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    /* 5. Styling basics */
    border-radius: 15px;
    padding: 20px;
    color: white;
}
.glassmin {
    background: rgba(255, 255, 255, 0.2);
    
    /* 2. The blur effect */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* For Safari support */
    
    /* 3. Subtle border for depth (optional but recommended) */
    border: 1px solid rgba(255, 255, 255, 0.3);
    
    /* 4. Soft shadow to make it "pop" */
    box-shadow: 10px 10px 32px 0px rgba(0,0,0,0.37);
    color: white;
}
.rounded15px {
    border-radius: 15px;
}
.button {
    transition: box-shadow 0.1s;
}
.button:hover {
    box-shadow: 10px 10px 32px 0px rgba(0,0,0,1);
}