@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css');

body {
    background-color: #111;
    color: #fff;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
    Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    display: flex;         
    flex-direction: column; 
    align-items: center;   
    justify-content: center; 
    min-height: 100vh;     
}

#stardateDisplay {
    font-size: 2em;  
    margin-bottom: 20px;  
    padding: 10px;           
    display: block;         
    margin: 0 auto;          
    width: fit-content;      
    box-sizing: border-box; 
}

#currentDateDisplay {
    font-size: 0.8em; 
    position: absolute; 
    bottom: 10px; 
    right: 10px;  
} 

.button-1 { 
align-items: center;
appearance: none;
background-color: #FCFCFD;
border-radius: 4px;
border-width: 0;
box-shadow: rgba(45, 35, 66, 0.4) 0 2px 4px,rgba(45, 35, 66, 0.3) 0 7px 13px -3px,#D6D6E7 0 -3px 0 inset;
box-sizing: border-box;
color: #36395A;
cursor: pointer;
display: inline-flex;
font-family: "JetBrains Mono",monospace;
height: 48px;
justify-content: center;
line-height: 1;
list-style: none;
overflow: hidden;
padding-left: 16px;
padding-right: 16px;
position: relative;
text-align: left;
text-decoration: none;
transition: box-shadow .15s,transform .15s;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
white-space: nowrap;
will-change: box-shadow,transform;
font-size: 18px;
    margin-top: 15px;
}

.button-1:focus {
box-shadow: #D6D6E7 0 0 0 1.5px inset, rgba(45, 35, 66, 0.4) 0 2px 4px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
}

.button-1:hover {
box-shadow: rgba(140, 109, 206, 0.4) 0 4px 8px, rgba(145, 114, 214, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
transform: translateY(-2px);
}

.button-1:active {
box-shadow: #D6D6E7 0 3px 7px inset;
transform: translateY(2px);
}

.bubbles {
    transition: transform 2.0s ease, opacity 1.16s ease, left .16s ease, top .16s ease, right .16s ease, bottom .16s ease;
    position: fixed;
    z-index: -1; 
    background-color: #BC987E; 
    border-radius: 50%;
    width: 120px;
    height: 120px;
    transform: scale(1);
    opacity: 0;
    filter: blur(30px);
    backdrop-filter: blur(200px); 
}

.bubble-hide {
    transform: scale(0);
    opacity: 0 !important;
} 
