body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    overflow: hidden;
	background-color: rgba(255, 255, 255, 0.6); /* leve escurecimento */
}

.container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 20px;
    color: white;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    /*background-color: rgba(0, 0, 0, 0.6);  leve escurecimento */
    padding: 20px;
    border-radius: 10px;
}

.logo {
    max-width: 80%;
    height: auto;
    margin-bottom: 30px;
}

.countdown {
    font-size: 1.5rem;
    font-weight: bold;
    color: black;
}

/* Fundo em slide */
#background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    transition: background-image 1s ease-in-out;
}

