body {
    font-family: "Orbitron", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: #314b40;
}

#topbar {
    display: flex;
    flex-direction: row;
    height: 50px;
    align-items: center;
    text-align: center;
    border: 2px solid #ccc;
    border-radius: 8px;
    padding: 10px 10px 10px 10px;
}

#line {
    width: 2px;
    height: 100%;
    background-color: #ffffff25;
}

#counter {
    min-width: 200px;
    margin: 0 0 0 20px;
    color: white;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px
}

@media screen and (min-width: 1000px) {
    .container {
        width: 30%;
    }
}

@media screen and (max-width: 1000px) {
    .container {
        width: 80%;
    }
}


input {
    min-width: 20px;
    max-width: 50px;
    padding: 10px;
    font-size: 1.6rem;
    background-color: transparent;
    border: none;
    outline: none;
    font-family: "Orbitron", sans-serif;
    color: white;

}

input:focus {
    border-color: #ff4d4d;
}

h1 {
    font-size: 3rem;
    margin: 20px 0;
    color: #222;
}

#pressBtn {
    background-color: #ff4d4d;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    border: none;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.1s ease;
    font-family: "Orbitron", sans-serif;
}

#pressBtn:active {
    transform: scale(0.95);
}

#resetBtn {
    background-color: #ffd633;
    color: black;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.1s ease;
    font-family: "Orbitron", sans-serif;
}

#resetBtn:active {
    transform: scale(0.95);
}