::selection {
    background: #925c71;
    color: #fff;
}

body {
    min-height: 100vh;
    min-width: 100vw;
    max-height: 100vh;
    max-width: 100vw;
    overflow: hidden;
    position: relative;
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 0;
}

.bg {
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100vw + 20px);
    height: calc(100vh + 50px);
    z-index: 1;
    background: url(../img/desktop.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.content h2 {
    margin-bottom: 0;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 4em;
    line-height: .75em;
}

.content h2 span {
    font-size: .65em;
    background-color: #fff;
    /* Solid background color */
    color: #1E2139;
    /* Transparent text color */
    padding: 0 auto;
    margin: 0
}

.content h1 {
    margin-top: 0;
    font-family: 'Pacifico', cursive;
    font-size: 5em;
    line-height: 1em;
}

.content h1::selection {
    background: transparent;
    color: inherit;
}

#countdown {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2em;
    font-family: "Roboto Condensed", sans-serif;
}

#countdown .pram {
    display: flex;
    flex-direction: column;
}

#countdown .pram span:first-child {
    font-size: 3em;
}

#countdown .pram:last-child span:first-child {
    color: #ff6464;
}

#countdown .pram span:last-child {
    text-transform: uppercase;
}

@media screen and (max-width: 480px) {
    .bg {
        position: absolute;
        top: -10px;
        left: -10px;
        width: calc(100vw + 20px);
        height: calc(100vh + 50px);
        z-index: 1;
        background: url(../img/mobile.webp);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        opacity: 1;
    }
}

@media screen and (max-width: 360px) {
    .content h2 {
        margin-bottom: 0;
        font-family: "Roboto Condensed", sans-serif;
        font-size: 3em;
        line-height: .75em;
    }

    .content h1 {
        margin-top: 0;
        font-family: 'Pacifico', cursive;
        font-size: 4em;
        line-height: 1em;
    }
}
