@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

* 
{

  margin: 0;
  padding: 0;
  font-family: 'Bebas Neue', 'Roboto', Arial, Helvetica, sans-serif;

}

body 
{

  height: 100vh;
  background: linear-gradient(120deg, #290001, #A0522D);
  display: flex;
  align-items: center;
  justify-content: center;

}

.relogio
{

  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 200px;
  width: 550px;
  
}

.relogio div
{

  height: 170px;
  width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: -5px -5px 3px #C87941, 5px 5px 3px #C87941;
  border-radius: 7px;
  letter-spacing: 3px;
  background-image: linear-gradient(#ff8000, #ffee00);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;

}

.relogio span
{

  font-weight: bolder;
  font-size: 60px;
  
}

.relogio span.tempo
{

  font-size: 15px;
  
}