body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: black;
    font-family: 'Segoe UI',sans-serif;
}

#words{
    font-family: "Dancing Script", cursive;
    position: relative;
    top: -250px;
    left: 10px;
    font-size: 130px;
    color: cyan;
    width: 600px;
    text-align: center;
    text-shadow: 0 0 40px cyan;

}

.clock{
    width: 890px;
    height: 400px;
    border-radius: 300px;
    border: 10px solid cyan;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #111;
    box-shadow: 0 0 50px cyan,inset 0 0 50px cyan;
    position: absolute;
    top: 180px;
}

#time{
    font-size: 190px;
    color: cyan;
    text-shadow: 0 0 30px cyan;
    top: -10px;
    position: relative;
    font-family: "Dancing Script", cursive;
}