html {
    margin: 0;
    padding: 0;
    font-family: "IBM Plex Serif", serif;
    font-size: 1.0em;
    font-style:normal;
}

body {
    margin: 0;
    padding: 0;
    background-color: black;
    color: white;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 30px;
}

.view {
    height: 937px;
    width: 1250px;
    background-image: url("/media/morn_seated.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.chatbox {
    display: none;
    position: relative;
    bottom: 100px;
    width: 300px;
}

.chatlabel {
    display: none;
    position: relative;
}

.reply {
    position: relative;
    bottom: 450px;
    left: -200px;
    display: none;
    width: 400px;
    height: 200px;
    font-size: 2em;
    text-align: center;
}

