html, body {
    margin: 0;
}

.container {
    min-height: 100svh;
    min-width: 100svw;
    margin: 0;
    background-color: #e6c89e;
    color: #2e2e2e;
    overflow: hidden;
}

.wrapper {
    height: 100svh;
    width: 100svw;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.quest-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    width: auto;
    max-width: 600px;
    padding: 10px;
    background-color: #f5f5f5;
    border-radius: 5px;
    border: 1px solid #999;
}

.quest-form form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    width: auto;
}

.quest-form * {
    margin: 4px;
}

.quest-form input[type="text"] {
    width: 360px;
    margin: 0 10px;
}

