body {
    background-color: black;
    color: white;
    font-family: "Arial", sans-serif;
    user-select: none;
}

.center {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.center .time {
    font-size: 48px;
    font-weight: bold;
}

.center .date {
    font-size: 24px;
    margin-top: 10px;
}

.rightBottom {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.leftBottom {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.rightTop {
    position: absolute;
    top: 20px;
    right: 20px;
}

.leftTop {
    position: absolute;
    top: 20px;
    left: 20px;
}

.left {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.right {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.bottom {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.top {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.right .helper {
    padding: 20px;
    border-radius: 10px;
    width: 200px;
    text-align: right;
}

.right .helper #helperTitle {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}