* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #353535;
}

.elephant-container {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.elephant {
    background-image: url(fil.png);
    background-position: center;
    background-size: cover;
    height: 250px;
    width: 250px;
}

.elephant-think {
    background-image: url(think.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    height: 300px;
    width: 300px;
    position: absolute;
    bottom: 200px;
    right: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.think-text {
    display: flex;
    position: absolute;
    top: 50px;
    width: 70%;
    height: 115px;
    overflow: auto;
    font-family: cursive;
    color: #696969;
}

.msg-container {
    width: 282px;
    display: flex;
    align-items: center;
    margin-bottom: 130px;
}

.msg-input {
    height: 40px;
    width: calc(100% - 40px);
    border: 2px solid #e4e4e4;
    background-color: #fafafa;
    color: #202020;
    border-radius: 5px 0 0 5px;
    padding: 10px;
    font-size: 18px;
}

.msg-btn {
    height: 40px;
    width: 60px;
    border-radius: 0 20px 20px 0 ;
    border: 2px solid #e4e4e4;
    border-left: none;
    background-color: #fafafa;
    color: #696969;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s ease;
}

.msg-input:focus {
    outline: none;
}

.msg-btn:hover {
    background-color: #e4e4e4;
    font-size: 18px;
}