
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    background: #000;
    color: #fff;
    overflow: hidden;
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('bg.jpg') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.content {
    position: relative;
    z-index: 1;
}

.logo {
    font-size: 4rem;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

#countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

#countdown div {
    font-size: 1.2rem;
    text-align: center;
}

#countdown span:first-child {
    font-size: 2rem;
    display: block;
}
