@import url('https://fonts.googleapis.com/css2?family=Poiret+One&display=swap');

body{
    font-family: font-family 'Poiret One', cursive;
    overflow: hidden;
    background: conic-gradient(from 90deg at 25% -10%, #ff4500, #d3f340, #7bee85, #afeeee, #7bee85) no-repeat;
}

.container{
    border: 1px solid black;
    margin: auto;
    width: 90%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.digitalClock{
    width: fit-content;
    margin:auto;
    padding: 10px;
    border-radius: 10px;
    color: white;
    background-color: rgba(0, 0, 0, 0.6);
}

.digitalClock h1 {
    display: inline-block;
    margin: 0 10px;
    font-weight: bold;
    font-size: 5rem;
}

@media(max-width:768px) {
    #bar1, #bar2, #bar3{
        display: none;
    }
    .digitalClock{
        text-align: center;
        width: 100%;
    }    
}

@media(max-width: 480px) {
    .digitalClock h1{
        font-size: 4rem;
    }
}



