* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: linear-gradient(45deg, #ee0979, #ff6a00);
}

main {
    width: 100vw;
    height: 100vh;
    display: flex;
    padding: 5em 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

main h1 {
    font-size: 2em;
}

form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 3em;
}

label {
    font-size: 1.25em;
    margin-top: 1em;
    margin-bottom: .25em;
}

input {
    text-align: center;
    max-width: 100%;
    padding: .5em 0;
    outline: none;
    border: none;
    border-radius: .5em;
    font-weight: 600;
}

.submit {
    font-size: .75em;
    padding: .5em 1em;
    margin-top: 4em;
    border-radius: .5em;
    background-color: rgb(58, 248, 0);
    border: none;
    font-weight: 600;
}

.btns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 10em;
}

.submit:hover {
    cursor: pointer;
}

.clear {
    background-color: rgb(0, 99, 248);
    font-size: .75em;
    padding: .5em 1em;
    margin-top: 4em;
    border-radius: .5em;
    border: none;
    font-weight: 600;
}

.clear:hover {
    cursor: pointer;
}

.output {
    margin-top: 4em;
    text-align: center;
    position: absolute;
    bottom: 5vh;
}

.output p {
    font-weight: 600;
    font-size: 1.25em;
}