* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: black;
    font-family: 'Manrope', sans-serif;
}

.container {
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    min-height: 90vh;
    align-items: center;
    padding: 2rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    max-width: 45rem;
    text-align: center;
}

label {
    display: block;
    margin-bottom: 10px;
    text-align: center;
}

input[type="text"] {
    border: 1px solid hsla(0, 0%, 100%, .1);
    background-color: #ffffff0d;
    border-radius: 8px 0 0 8px;
    padding: 15px;
    position: relative;
    min-width: 20rem;
    max-width: 25rem;
    will-change: transform;
    overflow: auto;
    outline: none;
    resize: none;
    font-size: 18px;
    letter-spacing: 0rem;
    line-height: 1.6em;
    text-align: start;
    color: #fff;
    text-decoration: none;
    text-transform: none;
    margin: 20px 0;
}

button {
    line-height: inherit;
    background: transparent;
    border-radius: 0 8px 8px 0;
    border: 1px solid #ecba00;
    padding: 1em 1.2em;
    font-size: 1em;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    color: #ecba00;
    transition: .3s ease-in-out;
}

.result {
    margin-top: 20px;
    text-align: center;
}

.result p {
    margin: 5px 0;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    max-width: 45rem;
    text-align: center;
}

.or {
    color: #ecba00;
}