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

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.video-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.glass-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 33px;
    padding: 20px;
    backdrop-filter: blur(8px);
    height: 800px;
    flex-shrink: 0;
    width: 1600px;
    margin: 20px;
    position: absolute;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.name-handler {
    color: aliceblue;
    font-weight: 900;
    font-size: 200px;
    position: fixed;
    font-family: "Roboto", serif;
    left: 50%;
    top: 15%;
    transform: translate(-50%, -50%);
}

.counter {
    font-weight: 500;
}

.spr {
    color: aliceblue;
    font-weight: 400;
    font-family: "Roboto", serif;
    top: 42%;
    left: 15%;
    right: -20%;
    position: fixed;
    font-size: 60px;
}

#counter {
    color: white;
    position: relative;
    display: inline-block;
}

#counter .digitContainer {
    position: relative;
    display: inline-block;
    width: 1ch;
    height: 1em;
    overflow: hidden;
}

#counter span {
    position: relative;
    display: block;
}

#counter span.out, #counter span.in {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

#counter span.out {
    transform: translateY(0);
}

#counter span.in {
    transform: translateY(100%);
}

.discord_button {
    position: absolute;
    left: 50%;
    top: 75%;
    transform: translate(-50%, -50%);
    filter: blur(0); /* Initial state without blur */
    height: 150px;
    width: auto;
    transition: filter 0.3s ease; /* Add a smooth transition for the filter property */
}

.discord_button img {
    max-height: 100%;
    width: auto;
}

.discord_button:hover {
    cursor: pointer;
    filter: blur(5px);
}