/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

h1 {
    margin-bottom: 20px;
    font-size: 24px;
}

#countdown {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.time-box {
    background-color: #007bff;
    padding: 10px;
    border-radius: 10px;
    color: white;
    width: 80px;
}

.time-box p {
    margin-top: 10px;
    font-size: 14px;
} */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    background-color: rgba(255, 255, 255, 0.9); /* Fundo branco com transparência */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

h1 {
    margin-bottom: 20px;
    font-size: 24px;
}

#countdown {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.time-box {
    background-color: #007bff;
    padding: 10px;
    border-radius: 10px;
    color: white;
    width: 80px;
}

.time-box p {
    margin-top: 10px;
    font-size: 14px;
}
