* {
  box-sizing: border-box;
}

html {
	height: 100%;

}

body {
  font-family: 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', Arial, Helvetica,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
	background-color: #3b283f;
	height: 100%;
	margin: 0;
}

span {
	padding-right: 15px;
	padding-left: 15px;
}

#desktop_header {
     color: white;
     font-size: 60px;
     font-family: Trebuchet MS;
     margin-left: 100px;
}

.container {
	display: flex;
  justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

.keys {
    margin-left: auto;
    background: #ffffff;
    width: 100%;
    display: flex;
    align-items: center;
}

button {
	border: 0;
	padding: 15px;
	border-radius: 10px;
	display: inline-block;
}

.chat {
	height: 500px;
    width: 60vw;
	display: flex;
	flex-direction: column;
    ustify-content: center;
	align-items: center;
	font-weight: bold;
}

::-webkit-input-placeholder {
	color: .711
}

input {
	border: 0;
	padding: 15px;
	margin-left: auto;
	border-radius: 10px;
	width: 100%;
	font-size: 24px;
    height: 40px;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #f8f8f8;
    color: #666;
    padding: 20px;
    text-align: center;
    font-size: 0.8rem;
}

.messages {
	display: flex;
	flex-direction: column;
	overflow: scroll;
	height: 90%;
	width: 100%;
	background-color: white;
	padding: 15px;
	margin: 15px;
	border-radius: 10px;
}

#bot {
	margin-right: auto;
}

#user {
	margin-left: auto;
}


.bot {
	font-family: Consolas, 'Courier New', Menlo, source-code-pro, Monaco,
	monospace;
}

.avatar {
	height: 25px;
}

.response {
	display: flex;
	align-items: center;
	margin: 1%;
}


/* Mobile */

@media only screen and (max-width: 980px) {
    #desktop_header {
        display: none;
    }
    #mobile_header {
        display: flex;
        color: white;
        font-size: 60px;
        font-family: Trebuchet MS;
        margin-left: 100px;
    }
  .container {
        margin-top: 50px;
        display: block;
    }
    .chat {
        margin: 20px;
        width: 95%;
        height: 50%;
        font-size: 34px;
    }
}