body { background-color: black; } .info { display: block; text-align: center; color: white; font-size: 24px; font-family: "Source Code Pro"; &:hover { color: #5ca1ca; } } #console { margin: 50px auto; background-color: rgba(50, 50, 50, 1); width: 800px; height: 600px; border: 2px solid white; padding: 10px; overflow: hidden; } #content { position: relative; top: -1px; } #inner { background-color: none; overflow: none; } .line { line-height: 20px; font-family: 'Source Code Pro', sans-serif; /* margin: 0; */ color: white; &.fb { color: #b8d977; &:after { content: " - FIZZBUZZ!"; } } &.f { color: #5ca1ca; &:after { content: " - Fizz..."; } } &.b { color: #ea9a4b; &:after { content: " - Buzz..."; } } }