@import url('https://fonts.googleapis.com/css2?family=Orbitron&display=swap');

* {
    padding: 0;
    margin: 0;
    border: 0;
    box-sizing: border-box;

    font-family: 'Orbitron', sans-serif;
}

body {
    width: 100%;
    height: 100vh;
    background: #0f3854;
    background: radial-gradient(ellipse at center,  #001336  0%, #000000 70%);
    background-size: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;

}

.clock{
    border-radius: 100%;
    background: rgba(49, 48, 48, 0);
    border: 5px solid #fff;
    box-shadow: inset 0 0 10px #00ffff, 0 0 20px #00a2ff;

    margin: 50px;
}

.wrap {
    overflow: hidden;
    position: relative;
    width: 350px;
    height: 350px;
    border-radius: 100%;
    
}

.minute, .hour{
    position: absolute;
    height: 100px;
    width: 5px;
    margin: auto;
    background: #fff;

    top: -27%;
    left: 0;
    bottom: 0;
    right: 0;

    transform-origin: bottom center;
    transform: rotate(0deg);
    
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .4);
    z-index: 1;
}

.minute {
    position: absolute;
    height: 130px;
    width: 4px;
    top: -35%;
    left: 0;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
    transform: rotate(90deg);
}

.second {
    position: absolute;
    height: 90px;
    width: 2px;
    margin: auto;
    top: -25%;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 4px;
    background: #ff4b3e;
    transform-origin: bottom center;
    transform: rotate(180deg) linear infinite;
    z-index: 1;
}


.dot {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 20px;
    height: 20px;
    border-radius: 100px;
    background: #fff;
    border: 2px solid #1b1b1b;
    border-radius: 100px;
    margin: auto;
    z-index: 1;
}

.day {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 10px;
}

.digital {
    font-size: 5rem;
    width: 500px;
    letter-spacing: 15px;
    
}

.lightning{
    color: #fff;
    text-shadow: 0 0 20px #00ffff, 0 0 40px #00a2ff;
}

.contrib{
    padding-top: 150px;
    text-align: center;
}

.contrib a, .contrib span{
    text-decoration: none;
    font-size: 1.2rem;
    color: #fff;
    display: block;
    padding: 10px;
}

.fa-linkedin, .fa-github{
    margin-right: 20px;
}

