* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    font-family: sans-serif;
    background-color: #000000;
    color: #23d400;
}

.header-container{
    display: flex;
}

#header{
    font-size: 2.5em;
    font-family: 'Press Start 2P', cursive;
    padding: 3rem 1rem;
    word-spacing: -0.3em;
    text-decoration: underline;
}


#input{
    font-family: 'Press Start 2P', cursive;
    font-size: 1.8rem;
    padding: 0.5rem;
    margin: 1rem 1rem 2rem 2rem;
    background-color: #23d400;
    color: #000000;
}

#enter{
    font-family: 'Press Start 2P', cursive;
    font-size: 1.8rem;
    padding: 0.5rem;
    background-color: #23d400;
    color: #000000;
    cursor: pointer;
}

h2{
    font-family: 'Press Start 2P', cursive;
    font-size: 1.8rem;
    padding: 0.5rem;
    margin: 1rem;

}

.list-container{
   display: flex;
   padding: 2rem;
}

ul {
    list-style-type: square;
    padding: 2rem;
    font-family: 'Press Start 2P', cursive;
    font-size: 2rem;
  }

