* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;

    background: #111;
    color: white;

    font-family: Arial, sans-serif;
    text-align: center;
}

.container {
    width: 100%;
    padding: 2rem;
}

.status {
    font-family: monospace;
    font-size: 1rem;
    opacity: 0.6;
}

h1 {
    margin: 1rem 0 0;

    font-size: clamp(7rem, 25vw, 24rem);
    font-weight: 900;
    line-height: 0.8;
    letter-spacing: 0.05em;

    animation: cheh 1.5s infinite alternate;
}

.subtitle {
    margin-top: 3rem;

    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: bold;
}

.info {
    margin-top: 2rem;

    font-family: monospace;
    font-size: 1rem;

    opacity: 0.6;
}

button {
    margin-top: 2rem;

    padding: 1rem 2rem;

    border: 2px solid white;
    border-radius: 8px;

    background: transparent;
    color: white;

    font-size: 1rem;
    font-weight: bold;

    cursor: pointer;
}

button:hover {
    transform: scale(1.05);
}

#counter {
    font-family: monospace;
    opacity: 0.5;
}

@keyframes cheh {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.04);
    }
}
