body {
    height: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    background-color: #2e2d3a;
}

#titleContainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 20vh;
}

#buttonContainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 20px;
    margin-bottom: 20px;
    gap: 10px;
}

#container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 20px;
    min-height: 10vh;
    gap: 20px;
}

#input {
    font-size: 2rem;
    width: 80vw;
    max-width: 700px;
    border-radius: 0;
    font-family: "JetBrains Mono", monospace;
    border-style: none;
    color: #f6f4f6;
    background-color: #5d66a2;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 5px;
}

#input::-moz-selection {
    outline-color: #bbb4ca;
}

#input::selection {
    outline-color: #bbb4ca;
}

#input::-webkit-input-placeholder {
    color: #f6f4f6;
}

#input::-moz-placeholder {
    color: #f6f4f6;
}

#input:-ms-input-placeholder {
    color: #f6f4f6;
}

#input::-ms-input-placeholder {
    color: #f6f4f6;
}

#input::placeholder {
    color: #f6f4f6;
}

#input:focus {
    outline: none;
    box-shadow: 10px 10px 0px 0px rgba(67, 63, 90, 1);
    -webkit-box-shadow: 10px 10px 0px 0px rgba(67, 63, 90, 1);
    -moz-box-shadow: 10px 10px 0px 0px rgba(67, 63, 90, 1);
}

#title {
    color: #f6f4f6;
    font-family: "JetBrains Mono", monospace;
}

.numberInput {
    font-size: 2rem;
    width: 80vw;
    max-width: 100px;
    border-radius: 0;
    font-family: "JetBrains Mono", monospace;
    border-style: none;
    color: #f6f4f6;
    background-color: #5d66a2;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 5px;
}

.numberInput::-moz-selection {
    outline-color: #bbb4ca;
}

.numberInput::selection {
    outline-color: #bbb4ca;
}

.numberInput::-webkit-input-placeholder {
    color: #f6f4f6;
}

.numberInput::-moz-placeholder {
    color: #f6f4f6;
}

.numberInput:-ms-input-placeholder {
    color: #f6f4f6;
}

.numberInput::-ms-input-placeholder {
    color: #f6f4f6;
}

.numberInput::placeholder {
    color: #f6f4f6;
}

.numberInput:focus {
    outline: none;
    box-shadow: 10px 10px 0px 0px rgba(67, 63, 90, 1);
    -webkit-box-shadow: 10px 10px 0px 0px #433f5a;
    -moz-box-shadow: 10px 10px 0px 0px rgba(67, 63, 90, 1);
}

.numberInput::-webkit-outer-spin-button,
.numberInput::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#output {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.outputText {
    font-family: "JetBrains Mono", monospace;
    color: #f6f4f6;
    font-size: 1.5rem;
    margin: 2px;
}

.text {
    font-family: "JetBrains Mono", monospace;
    color: #f6f4f6;
    font-size: 1.5rem;
}

.paragraph {
    font-family: "JetBrains Mono", monospace;
    color: #f6f4f6;
    font-size: 1.5rem;
    text-align: center;
}

.button {
    font-family: "JetBrains Mono", monospace;
    color: #f6f4f6;
    font-size: 1.5rem;
    background-color: #5d66a2;
}