@font-face {
  font-family: orbitron; 
  src: url('../font/Orbitron/static/Orbitron-Medium.ttf'); 
}

*{
    color: #00ffff;
    font-size: 15pt;
    font-family: orbitron;
    
}

body{
    background: linear-gradient(180deg, #0a1214, #201d32);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

.footer{
    font-size: 13pt;
    position:relative;
    bottom:0;
    top: 0;
    margin: 0;
    padding: 0;
    width:100%;
    text-align: center;
    justify-content: center;
}

.container{
    height: 150px;
    width: auto;
    margin: 5px 5px 5px 5px;
    padding: 40px 60px;
    
    display: block;
    text-align: center;
    justify-content: center;
    flex-direction: column;

    background: #0b1214b3;
    border-radius: 20px;
    box-shadow: 0 0 30px #7544d1, 0 0 50px #b495f1;
}

.now-clock{
    display: flex;
    height: auto;
    width: 100%;
    margin: 0;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 10rem;
    letter-spacing: 5px;
}

.now-clock span{
    font-size: 4rem;
}

.now-date{
    margin-top: 5px;
    color: #b495f1;
}

#colon{
    color: #b495f1;
}

@media only screen and (max-width: 600px) {
    .now-clock{
        display: flex;
        align-items: baseline;
        justify-content: center;

        height: auto;
        width: 100%;
        margin: 0;
        
    }
    .now-clock span{
        font-size: 2.5rem;
        text-align: center;
        letter-spacing: 5px;
    }

    .now-date{
        display: flex;
        
        justify-content: center;
        margin-top: 5px;
        color: #b495f1;
    }

    .container{
        height: auto;
        width: auto;
        margin: 0 5px 0 5px;
        display: flex;
        text-align: center;
        justify-content: center;
        background: rgb(11, 18, 20, .7);
        padding: 40px 60px;
        border-radius: 10px;
        box-shadow: 0 0 30px #7544d1, 0 0 50px #b495f1;
    }

    .footer{
        position:relative;
        bottom:0;
        top: 0;
        margin-top: 15px;
        padding: 0;
        width:100%;
        text-align: center;
        justify-content: center;
        display: block;
        font-size: 8pt;
    }
}