* {
    margin: 0%;
    padding: 0%;
}

body {
    background: white;
    display: grid;
    place-items: center;
    overflow: hidden;
}

#chatLog {
    font-size: 2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: bolder;
}

.box {
    width: 100%;
    height: auto;
    box-shadow: 5px 5px 20px #000;
    /* position: absolute; */
    /* top: 50%;
    left: 50%; */
    /* transform: translate(-50%, -50%); */
    border-radius: 20px;
}

.top {
    width: 100%;
    height: 100%;
    background: cyan;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.top h1 {
    margin: 0;
    font-size: 30px;
    color: crimson;
    text-align: center;
    padding-top: 10px;
    font-family: sans-serif;
}

.mid {
    width: 100%;
    height: 150px;
    background: yellow;
}

.mid .chat {
    width: 100%;
}

.mid .chat h2 {
    margin: 0;
    font-size: 30px;
    color: #000;
    padding: 30px 20px;
    text-align: center;
}

.mid .chat p {
    margin: 0;
    height: 30px;
    font-size: 28px;
    color: blue;
    text-align: center;
    background-color: yellow;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.input {
    height: auto;
    width: auto;
    overflow: hidden;
    border-radius: 0px 0px 20px 20px;

}

.input input {
    width: 100%;
    height: auto;
    outline: none;
    border: none;
    padding-left: 30px;
    padding-top: 0;
    font-family: monospace;
    font-size: 3rem;
    background: lime;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: bolder;
}

.container {
    border: 2px solid transparent;
    width: fit-content;
    height: 100vh;
    overflow: hidden;
    display: grid;
    place-items: center;
    padding: 1%;
}