* {
    box-sizing: border-box;
}

body {
    background-color: black;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.container {
    max-width: 760px;
    min-width: 760px;
    height: 640px;
    width: 85%;
    margin: 10px auto 0;
    font-size: 20px;
    font-family: 'Play', Tahoma, Arial, sans-serif;
    display: flex;
    flex-direction: column;
}

.ui-block {
    color: white;
    padding: 15px 15px 20px;
    border: 5px solid white;
    font-size: 18px;
}

.image {
    border-bottom-width: 0;
    padding: 0;
    width: 760px;
    height: 300px;
    overflow: hidden;
}

.image img {
    display: block;
    width: 100%;
}

.screen {
    flex-grow: 1;
}

.action-ask {
    color: #f0e386;
}

.input-wrapper {
    padding: 5px 30px;
    position: relative;
    margin-top: auto;
    border-top-width: 0;
}

.input-wrapper label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    color: #808080;
}

.input-wrapper .user-input {
    color: white;
    background-color: black;
    border: 0;
    font-size: inherit;
    font-family: inherit;
    line-height: 1.8;
    display: block;
    width: 100%;
}

.input-wrapper .user-input:focus {
    outline: none !important;
}

.input-wrapper .user-input:focus + label {
    color: white;
}

.inventory-item, .location-item, .encounter {
    color: greenyellow;
}

.screen p {
    margin: 0;
    padding-top: 1rem;
}