body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #1C1C1C;
    text-align: center;
    font-family: "Karla", sans-serif;
}

.container {
    width: 90vw;
    margin: 25px 0;
    max-width: 444px;
}

.header {
    padding: 10px 20px;
    background: #6943FF;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    color: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-size: 1.7rem;
}

label {
    font-weight: bold;
    margin: 10px 0 0;
}

#num-input {
    border: 2px solid #B295FF;
    background: 0;
    font-size: 30px;
    width: 2em;
    text-align: center;
    padding: 10px;
    margin: 10px 0;
    color: inherit;
    font-family: inherit;
}

.btn {
    background: #FFF;
    border: 0;
    padding: 5px 15px;
    cursor: pointer;
    font-family: inherit;
}

.btn:hover {
    background: #e6e6e6;
    transition: background 0.8s;
}

#status-el {
    height: 1em;
}

.body {
    padding: 10px 20px;
    background: #FFF;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.rounded {
    border-radius: 5px;
}

.body {
    background: #1F2937;
    color: #FFFFFF;
}

.card-container {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.card {
    background: #273549;
    padding: 5px 10px;
    margin: 10px 0;
}

h2 {
    font-size: 1.3rem;
    color: #CCC1FF;
}

.card p {
    height: 1em;
}

/* W3Schools code to remove default number input controls */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}