@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300;400;700&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

:root {
    --text-color: #00aa00;
}

body {
    font-family: 'Roboto Mono', sans-serif;
    background-color: #333;
    color: #ccc;
    font-size: 18px;
    line-height: 1.6;
}

h1 {
    color: var(--text-color);
    font-size: 50px;
    letter-spacing: -5px;
    margin-bottom: 20px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

h2 {
    color: var(--text-color);
}

h3 {
    margin-bottom: 10px;
}

ul {
    list-style-type: none;
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease 0s;
}

a:hover {
    color: #cbdfd6;
}

p {
    margin: 20px 0;
}

nav {
    width: 30%;
}

nav ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

nav ul li {
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

nav ul li:hover {
    color: #cbdfd6;
}

.container {
    max-width: 600px;
    margin: auto;
    height: 70vh;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.wb-body {
    background: #111;
    padding: 20px;
}

.hidden {
    display: none;
}

.cursor {
    font-weight: 700;
    animation: 1s blink step-end infinite;
}

@keyframes blink {

    from,
    to {
        color: transparent;
    }

    50% {
        color: var(--text-color);
    }
}

@media screen and (max-width: 600px) {
    nav ul li {
        margin: 0 1rem;
    }

    .winbox {
        width: 323px !important;
        left: 50px !important;
    }
}