body {
    height: 100vh;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    position: relative;
    
}
.background {
    position: fixed;
    top: 0;
    left: 0;
    margin:0;
    padding: 0;
    object-fit:cover;
    z-index: -100;
}
.overlay {
    position: fixed;
    margin:0;
    top: 0;
    left: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(30, 30, 30, 0.55);
    z-index: 1;
}

.container {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-shadow: 0 2px 10px #0003;
    padding: 0;
    margin:0;
    
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    font-weight: 700;
}
.logoNord{
    width: 150px;
    height: auto;
    margin-bottom: 1.5rem;
}

p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-align: center;
}

.countdown {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.countdown div {
    text-align: center;
}

.countdown #days,
.countdown #hours,
.countdown #minutes,
.countdown #seconds {
    font-size: 2.8rem;
    font-weight: 700;
}

.label {
    font-size: 0.9rem;
    margin-top: 0.4rem;
    color: #c0bebe;
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    .countdown {
        gap: 1.2rem;
    }

    .countdown #days,
    .countdown #hours,
    .countdown #minutes,
    .countdown #seconds {
        font-size: 1.5rem;
    }

    
}

.circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 3px solid #fff;
    box-shadow: 0 2px 16px 0 rgba(90, 80, 200, 0.18);
    font-weight: 700;
    transition: background 0.2s;
    gap: 0.1rem;
    overflow: hidden;
    text-align: center;
}


.circle span[id] {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin: 0;
    padding: 0;
    display: block;
}

.circle .label {
    font-size: 0.82rem;
    color: #e6e6e6;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    line-height: 1.1;
}

@media (max-width: 600px) {
    .circle {
        width: 54px;
        height: 54px;
        gap: 0.07rem;
    }

    .circle span[id] {
        font-size: 1rem;
    }

    .circle .label {
        font-size: 0.5rem;
    }
    p{
        text-align: center;
    }
}