@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');

html {
    width: 100vw;
    height: 100vh;
}

* {
    margin: 0px;
    padding: 0px;
    border: none;
    background-color: black;
    color: white;
    font-family: "Cinzel", serif;
    font-weight: 400;
    font-style: normal;
}

body {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

textarea {
    width: 90vw;
    max-width: 600px;
    height: fit-content;
    min-height: 3rem;
}

.text-box {
    padding: 10px;
    width: 90vw;
    max-width: 600px;
    height: fit-content;
    min-height: 3rem;
    border: 2px solid white;
    border-radius: 15px;
}

main {
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

#cypher-output {
}