@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@700&display=swap');

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

body, html {
    height: 100vh;
    background-color: #1c1c1c;
    color: #e7e7e7;
}

h1 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 4.5rem;

    text-decoration: underline;

    text-align: center;
}

p {
    padding-top: 20px;
    font-family:'Courier New', Courier, monospace;
    text-align: center;
}

.wrapper {
    margin: 10vh 10vw;
    min-width: 480px;
}

.input {
    text-align: center;
    padding: 5vh 5vw;
}

.input > input {
    border: 1px solid #cccccc80;
    background-color: #2d2d2d;
    border-radius: 10px;
    padding: 10px;
    color: #e7e7e7;
}

.input > button {
    border: 1px solid #cccccc80;
    background-color: #2d2d2d;
    border-radius: 10px;
    padding: 10px;
    color: #e7e7e7;
}
