body {
    background-color: #0a0a0a;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #ebebeb;
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
    padding: 0;
    text-align: center;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.logo {
    margin: 20px 0;
    padding: 0;
    text-align: center;
    width: 100%;
    max-width: 600px;
}

.logo-sproesser img {
    width: 120px;
    height: auto;
    padding: 15px 25px;
}

.logo-sproesser {
    transition: transform 0.3s; 
}

.logo-sproesser:hover {
    animation: flutuar 1s infinite;
}

.footer {
    margin: 0;
    padding: 0;
    text-align: center;
    width: 100%;
    height: 55px;
    position: fixed;
    bottom: 0;
    background-color: #0a0a0a;
}

.max1030 {
    max-width: 1300px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin: auto;
}


.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0 70px;
}

.countdown .countdown-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
}

.countdown .countdown-item .number {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    background-color: #191919;
    padding: 10px 20px;
    border-radius: 5px;
}

.countdown .countdown-item .label {
    font-size: .7rem;
    font-weight: 500;
    color: #424242;
    border-radius: 5px;
}


@keyframes flutuar {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0);
    }
}