body{
    overflow: hidden;
    font-family: poppins;
}
.main{
    display: grid;
    grid-template-columns: 1fr 0.3fr;
    grid-template-rows: 0.7fr 0.1fr 0.1fr;
    width: 90vw;
    height: 90vh;
    margin: 3vw;
    place-items: center;
}
#span{
    grid-row: 1/2;
    grid-column: 1/2;
    display: flex;
    flex-direction: column;
    width: 80%;
    overflow-y: scroll;
    overflow-x: hidden;
    height: 50vh;
}
.julieth{
    width: 20vw;
    height: fit-content;
    background-color: rgb(252, 252, 235);
    border-radius: 15px;
    padding: 15px;
    align-self: flex-start;
    box-shadow: 0px 0px 5px 5px rgb(190, 182, 182, 0.1);
}
.response{
    width: 20vw;
    height: fit-content;
    align-self: flex-end;
    background-color: rgb(83, 83, 70);
    box-shadow: 0px 0px 5px 5px rgb(190, 182, 182, 0.1);
    color: white;
    border-radius: 15px;
    padding: 15px;
}
.form{
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    grid-row: 2/3;
    grid-column: 1/2;
}
#input{
    width: 80%;
    height: 10vh;
    border-radius: 3px;
    margin: 0px;
    padding: 5px;
    outline: none;
    border: none;
}
#button{
    width: 50%;
    background-color: green;
    border: none;
    height: 5vh;
    border-radius: 3px;
    cursor: pointer;
    color: white;
}
#image{
    grid-row: 1/4;
    grid-column: 2/3;
    height: 100%;
    overflow: hidden;
    z-index: -100;
}