@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: rgb(0, 0, 0);
  color: #ccc;
  font-size: 24px;
  line-height: 1.6;
  min-width: 300px
}

h1 {
  color: var(--text-color);
  font-size: 60px;
  letter-spacing: -5px;
  margin-bottom: 20px;
}

h2 {
  color: var(--text-color);
}

h3 {
  margin-bottom: 10px;
}

ul {
  list-style-type: none;
}

a {
  color: var(--text-color);
  text-decoration: none;
}

p {
  margin: 20px 0;
}

nav {
  width: 33%;
}

nav ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

nav ul li {
  color: var(--text-color);
  cursor: pointer;
}

.container {
  max-width: 800px;
  margin: auto;
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.wb-body {
  background: rgb(0, 0, 0);
  border: 1px white solid;
  border-top: none;
  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) {
  body {
    font-size: 36px;
    line-height: 1.6;
    min-width: 300px
  }
  
  h1 {
    font-size: 75px;
    letter-spacing: -5px;
    margin-bottom: 20px;
  }
  nav {
    width: 60%;
  }
} */


@media screen and (max-width: 998px) {
  body {
    font-size: 24px;
    line-height: 1.6;
    min-width: 300px
  }
  
  h1 {
    font-size: 60px;
    letter-spacing: -5px;
    margin-bottom: 20px;
    color: red
  }
  nav {
    width: 40%;
  }
}
@media screen and (max-width: 600px) {
  body {
    font-size: 24px;
    line-height: 1.6;
    min-width: 300px
  }
  
  h1 {
    font-size: 60px;
    letter-spacing: -5px;
    margin-bottom: 20px;
    color: blue
  }
  nav {
    width: 50%;
  }
}
