#background {
    width: 100vw;
    height: 100vh;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#spacer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2vh;
    text-align: center;
}

html, body{
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    font-family: 'Orbitron', sans-serif;
    overflow: hidden;
}

p {
    color: white;
    font-weight: bold;
}

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

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

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

#fact {
    font-size: 1.75vh;
    margin: 1vh;
    opacity: .75;
    font-family: sans-serif;
    font-style: italic;
    animation: fadein 2s ease-in;
}

@keyframes fadein {
    from {opacity: 0;}
    to {opacity: .75;}
}

#cursor{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
}

#search {
    width: 100%;
    padding: 1.5vh 2vw;
    font-size: 2.5vh;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: white;
    font-family: sans-serif;
    font-weight: bold;
    outline: none;
    transition: .25s ease;
}

#search::placeholder{
    color: rgba(255, 255, 255, .75);
}

#search:focus {
    background: rgba(255, 255, 255, .25);
    box-shadow: 0 0 20px rgba(255, 255, 255, .5);
}

#fidget{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2vh;
}

#fidgetBtn{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffffff55, #00000055);
    backdrop-filter: blur(6px);
    border: 2px solid rgba(255, 255, 255, .5);
    box-shadow: 0 0 20px rgba(255, 255, 255, .25);
    transition: transform .1s ease, box-shadow .2s ease;
    cursor: pointer;
}

#fidgetBtn:active{
    transform: scale(.9);
    box-shadow: 0 0 30px rgba(255, 255, 255, .55)
}

#fidgetCount{
    margin-top: 1vh;
    font-size: 3vh;
    color: white;
    font-family: 'Orbitron', sans-serif;
}