@import url('https://fonts.googleapis.com/css2?family=Gravitas+One&family=Heebo:wght@400;500&display=swap');

body {
    background: url("bg/backgroundImg.jpg") no-repeat;
    background-size: cover;
   display: flex;
   justify-content: center;
   align-items: center;
   height: 100vh;


}

.clock {
    display: flex;
}
 
.flip {
    position: relative;
	width: 60px;
	height: 100px;
	margin: 2px;
	font-size: 66px;
	line-height: 100px;
	text-align: center;
	border: 1px solid black;
	border-radius: 10px;
	-webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
	 box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}

.digital::before,
.digital::after {
    position: absolute;
    content: attr(data-number);
    left: 0;
    right: 0;
    color: #fff;
    background: black;
    overflow: hidden;
    perspective: 160px;
    -webkit-perspective: 160px;
	        perspective: 160px;
}

.digital::before {
    top: 0;
    bottom: 50%;
    border-bottom: 1px solid #666;
    border-radius: 10px 10px 0 0 ;
}


.digital::after {
    top: 50%;
    bottom: 0;
    line-height: 0;
    border-radius: 0 0 10px 10px;
}

 

.digital.front::after,
.digital.back::before {
    z-index: 1;
}

.digital.back::after {
    transform-origin: top center;
    transform: rotateX(0.5turn);
    z-index: 2;
}

.digital.front::before {
    z-index: 3;
}

.divider {
    font-size: 66px;
    line-height: 102px;
    font-style: normal;
}

.flip.running .front::before {
    transform-origin: center bottom;
    animation: frontFlipDown 0.6s ease-in-out;
    box-shadow: 0 -2px 6px rgba(255, 255, 255, 0.3);
    backface-visibility: hidden;
}
.flip.running .back::after{
    animation: backFlipDown 0.6s ease-in-out;
}

@keyframes frontFlipDown {
    to {
        transform: rotateX(0.5turn);
    }
}

@keyframes backFlipDown {
    to {
        transform: rotateX(0); 
    }
}

body {
    margin: 0;
    font-family: 'Courier New', Courier, monospace; /* Fonte estilo screen saver */
    background: none;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('background.jpg') no-repeat center center/cover; /* Caminho da sua imagem */
    filter: brightness(30%); /* Escurece apenas o fundo */
    z-index: -1; /* Coloca o fundo atrás do conteúdo */
}
h1 {
    font-size: 50px;
    margin: 10px;
}
p {
    font-size: 18px;
    margin: 10px 0 20px;
}
.progress-bar {
    position: relative;
    width: 300px;
    height: 10px;
    background: #555;
    border-radius: 5px;
    margin: 20px 0;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    width: 300px;
    font-size: 14px;
}
.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}
.btn:hover {
    background: #2980b9;
}
.social-icons {
    margin-top: 30px;
}
.social-icons a {
    margin: 0 10px;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
}
.social-icons a:hover {
    color: #3498db;
}
footer {
    margin-top: 50px;
    font-size: 12px;
    color: #ccc;
}
.clock {
    font-size: 60px;
    letter-spacing: 5px;
    margin-top: 20px;
    font-weight: bold;
    text-transform: uppercase;
}
.logo {
    
    width: 250px; /* Ajusta o tamanho da imagem */
    margin-bottom: 20px; /* Espaço entre o logotipo e o título */
    background: transparent; /* Garante que não há fundo */
    margin-bottom: 60px;
}