body {
    background: rgb(40, 40, 40);
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

* {
    color: rgb(220, 220, 220);
    font-family: sans-serif;
}

#container {
    background: rgb(25, 25, 25);
    width: 260px;
    padding: 24px;
    border-radius: 16px;
}

#settings {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#settings input {
    background: rgb(60, 60, 60);
}

#selections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 16px;
}

#selections div {
    display: flex;
    justify-content: space-between;
}

#output-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 16px 0 16px 0;
}

#output-box h3 {
    margin: 0;
}

#output {
    width: 100%;
    word-wrap: break-word;
    text-align: center;
    word-break: break-all;
    margin: 16px 0 16px 0;
}

#buttons {
    width: 100%;
    display: flex;
    justify-content: space-around;
}

#buttons button {
    height: 30px;
    width: 120px;
    background: rgb(20, 20, 255);
    border: none;
    border-radius: 999px;
    font-size: large;
}