html {
    background: #070512;
    box-sizing: border-box;
    font-family: 'Brush Script MT', cursive;
}

body, .input, .solution {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

img {
    height: 60dvh;
    @media (orientation: portrait) {
        height: auto;
        width: 80dvw;
    }
}

.hint {
    position:absolute;
    bottom: 0;
    left: 0;
    font-size: 3rem;
    font-family: sans-serif;
}

.inputhint {
    font-family: sans-serif;
}

button {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 24px;
    height: 24px;
    background: #765e88;
    @media (min-width: 600px) {
        width: 32px;
        height: 32px;
    }
}

.solution {
    background: #765e88;
}

.input {
    position: absolute;
    top: 0;
    left: 0;
    background: rgb(185,111,241);
background: radial-gradient(circle, rgba(185,111,241,1) 0%, rgba(121,9,109,1) 31%, rgba(85,0,255,1) 100%);
}

input {
    width: 60vw;
    padding: 2rem;
    font-size: 2rem;
    font-family: cursive;
}
