#background {
    width: 100vw;
    height: 100vh;
    background-position: center;
    background-size: cover;
    text-align: right;
    display: flow-root;

}

html,
body,
p {
    margin: 0;
    padding: 0;
}

p {
    color: antiquewhite;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}

#time {
    font-size: 15vh;
    margin: 1vw;
}

.gloss {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: inline-block;
    margin: 5vw;
}

#weather {
    font-size: 5vh;
    margin: 1vw;
}

#oracle-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10; 
    background: rgba(235, 226, 226, 0.5); 
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(5px); 
}


#user-request {
    width: 250px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid white;
}

#oracle-btn {
    padding: 10px;
    cursor: pointer;
}