body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100vh;
}

.bgimage {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    filter: blur(5px) brightness(0.4);
    z-index: -10;
}

.panel {
box-sizing: border-box;

    min-height: 10%;
    padding: 2.5rem;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(255, 255, 255);
    background-color: rgba(5, 5, 5, 0.5);
    backdrop-filter: blur(10px);
    height: 20%;
    border-radius: 10px;
    border-color: white;
    border-style: solid;
    border-width: 1px;

}
input {
    width: 50vw;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.panelcontainer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    flex-direction: column;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    gap: 1rem;
    justify-content: center;
    min-width: 80%;

}
h1 {
    font-family: Verdana, Geneva, Tahoma, sans-serif
}
p {
    font-family: Verdana, Geneva, Tahoma, sans-serif
}


.topbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: rgba(5, 5, 5, 0.5);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.clock {
    align-self: center;
   color: white;
   font-size: 30px;
}
button {
    width: 50vw;
    padding: 0.5rem;
margin-bottom: 1 rem;
border: none;
background-color: black;
color: white;
font-size: 1rem;
}