:root {
    color-scheme: light dark;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    min-height: 100vh;
}

.sentence {
    max-width: 60rem;
}

.container > .sentence > p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 5rem;
    color: light-dark(#00000057, #ffffff80);
}

.container > div > p > span {
    font-weight: bolder;
    color: light-dark(#000000, #ffffff);
    background-color: rgba(53, 182, 242, 0.627);
    border-radius: 4px;
    padding: 0 7px;
}

.container > div > p > .orange-light {
    background-color: rgba(242, 192, 53, 0.627);
}

form {
    margin-top: 4vh;
}

form > * {
    margin: 5px 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    color: light-dark(#000000, #ffffff);
}

.warning {
    display: none;
    margin-top: 2vh;
    background-color: #f1e680;
    box-shadow: inset 0 2px 0px 0px #fff9bf;
    font-family: Arial, Helvetica, sans-serif;
    padding: 15px 10px;
    border-radius: 10px;
    color: #000000;
    font-weight: bolder;
    border: #d8d063 2px solid;
}

.warning::first-letter {
    font-size: 20px;
}

.output > #output {
    margin-top: 2vh;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    color: light-dark(#000000, #ffffff);
}

#output > p::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: light-dark(#00000057, #ffffff80);
    margin: 10px 0;
}