/* body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
} */

.lockscreen {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s ease-in-out;
    background: black;
    z-index: 10;
}

.lockscreenElem {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lockscreenElem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.time {
    position: absolute;
    top: 20%;
    color: white;
    font-size: 5rem;
    text-align: center;
    /* margin-top: 0%; */
}
