@import url('https://fonts.googleapis.com/css2?family=PT+Sans+Narrow:wght@700&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'PT Sans Narrow', sans-serif;
}
body{
    height: 100vh;
    background: linear-gradient(120deg, rgb(255, 0, 255), orange, blue);
    display: flex;
    align-items: center;
    justify-content: center;
}
.clock{
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 200px;
    width: 550px;
    background: transparent;
    border-radius: 3px;
    box-shadow: 0px 8px 10px rgb(0, 0, 0);
    border-radius: 10px;
}
.clock div{
    height: 170px;
    width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: white;
    background: rgba(5, 5, 5, 0.9);
    box-shadow: 8px 3px 8px rgb(0, 0, 0);
    border-radius: 10px;

}
.clock span{
    font-weight: bolder;
    font-size: 80px;
}
.clock span.time{
    font-size: 20px;
}
.clock{
    font-size: 85px;
    color: white;
    animation: main 2s;
}
@keyframes main {
    from{
        filter: blur(5px);
    transform: translateY(100%);
    }
    to{
        transform: translateY(0%);
    }
}
@media (max-width: 750px){
    .logo{
        max-width: 400px;
    }
    .border{
        max-width: 70%;
    }
    .buttoncta{
        width: 70%;
        align-items: center;
        display: flex;
        justify-content: center;
        font-size: 80%;
    }
    .password{
        width: 70%;
    }
    .slider{
        width: 70%;
    }
}
@media (max-width: 750px){
    .clock{
        width: 70%;
        font-size: 20%;
    }
    div{
        margin:10px;
        
    }
}
@media (max-width: 465px){
    .clock{
        width: 70%;
        font-size: 20%;
    }
    div{
        margin:10px;
    }
}
