*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    font-family: Arial, sans-serif;
}

/* Container contendo o conteúdo */
.container {
display: flex;
justify-content: center;
text-align: center;
align-items: center;
overflow: hidden;
width: 100%;
}
/* Container contendo o conteúdo */

.image {
 position:absolute;

}
.image img{
    width: 100%;
}


/* Relógio */
.relogio {
    border: 2px solid #000000;
    background: transparent;
    background-image: url('/img/relogio.jpeg');
    border-radius: 50px;
    padding:100px 1%;
    max-width: 450px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
   
}

#clock {
    font-size: 48px;
    font-family: Arial, sans-serif;
    color: #fff;
    text-shadow: 2px 2px 1px #000;
    
}
/* Relógio */

@media (max-width: 1024px) {
    .image img{
        width: 100%;
        height: 100vh;
    }
    .container{
    margin: 0 2%;
    }
}

@media (max-width: 768px) {
    .image img{
        width: 100%;
        height: 100vh;
    }

    .container{
    
    margin: 0 2%;
    }
}

@media (max-width: 468px) {
    .image img{
        width: 100%;
        height: 100vh;
    }

    .container{
    
    margin: 0 2%;
    }
}
