body {
    margin: 0;
    padding: 0;
    overflow-x:hidden;
    box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace;
}

.container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
}

.image-container {
    width: 100%;
    background-image: url("./assets/worldmap.png");
    background-size: cover;
    background-repeat: no-repeat;
    height: 25%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.image-container  h1 {
    margin: 0;
    font-size: 2rem;
}

.image-container  p {
    font-size: 1.1rem;
}

.main-container {
    margin: 10px 0px;
    width: 100vw;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* chat container */

.chat-container {
    margin: 10px 0px;
    width: 94vw;
    height: 98%;
    border: 3px solid black;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
}

.chat-heading {
    text-align: center;
    font-size: 1.2rem;
}

#chat-heading-after-translation {
    display: none;
}

.original-text {
    margin: 15px 15px 20px;
    height: 30%;
    display: flex;
}

.input-container {
    display: flex;
    flex-direction: column;
    background-color: #EFF0F4;
    margin: 0px;
    width: 100%;
    height: 40%;
    padding: 4px 10px 60px 10px;
    line-height: 1;
    overflow-wrap: break-word;
    resize: vertical;
    border: none;
    border-radius: 5px;
   font-size: 1.3rem;
    outline: none;
}

.language-selection form {
    margin: 15px 15px 20px;
    height: 30%;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.original-options {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: left;
    margin-left: 5px;
    margin-top: 10px;
}

.original-options img{
    margin-top: auto;
    justify-self: center;
}

.options {
    display: flex;
    margin-bottom: 20px;
    font-size: 1.2rem;
     margin-left: 10px;
}

label {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin-left: 10px;
}
.options img{
    margin-left: 10px;
    border: 1px solid black;
}

.translate-btn {
    margin: 10px auto;
    margin-top: 10px;
    width: 60vw;
    background-color: #035A9D;
    color: #FFFFFF;
    border: none;
    padding: 15px 10px;
    font-size: 1.5rem;
    border-radius: 5px;
    font-weight: 540;
    letter-spacing: 1.1px;
}

/* output text area */


.output-container {
    display: none;
   margin-bottom: 20px;

}

.after-translation {
    display: flex;
    flex-direction: column;
    background-color: #EFF0F4;
    margin: 30px auto;
    color: black;
    font-weight: 600;
    width: 80%;
    height: 40%;
    padding: 13px 10px 60px 15px;
    line-height: 1;
    overflow-wrap: break-word;
    resize: vertical;
    border: none;
    border-radius: 5px;
    font-size: 1.3rem;
    outline: none;

}

/*  start over */


.start-over-btn {
    display: none;
    margin: 10px auto;
    margin-top: 10px;
    width: 60vw;
    background-color: #035A9D;
    color: #FFFFFF;
    border: none;
    padding: 15px 10px;
    font-size: 1.5rem;
    border-radius: 5px;
    font-weight: 540;
    letter-spacing: 1.1px;
}