body{
    background: var(--color-bg);    
}
section{
    padding: 3%;
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
    position: relative;
}
.host-wrap{
    width: 100%;
}
.host{
    display: flex;
    align-items: center;
}
.host span{
    font-size: 180px;
    margin-right: 30px;
}
/* .host figure{
    width: 180px;
}
.host figure img{
    width: 100%;
    height: auto;
} */
h1{
    font-size: 68px;
    font-weight: 600;
}
.message-wrap{
    margin: 10px 0 0 152px;
}
.message-one{
    width:300px;
    height: 140px;
    border-radius: 87px;
    background-color: var(--color-mainB);
    color: white;
    font-size: 33px;
    line-height: 140px;
    text-align: center;
    opacity: 0;
    animation: showUp .8s 1s;
    animation-fill-mode: forwards;
}
.message-two{
    margin-top: 10px;
    width:360px;
    height: 140px;
    border-radius: 0 87px 87px 87px;
    background-color: var(--color-mainB);
    color: white;
    font-size: 33px;
    line-height: 140px;
    text-align: center;
    opacity: 0;
    animation: showUp .8s 1.6s;
    animation-fill-mode: forwards;
}
.border-change{
    border-radius: 87px 87px 87px 0px;
    transition: all .2s;
}
.ms-time{
    display: block;
    margin: 30px 0 0 30px;
    font-size:18px;
    color: var(--color-very-light-grey);
    opacity: 0;
    animation: showUp .8s 1.6s;
    animation-fill-mode: forwards;
}
.user-wrap{
    position: absolute;
    right: 3%;
    bottom: 3%;
}
.user{
    width:360px;
    height: 140px;
    border-radius: 87px;
    background-color: var(--color-light-grey);
    color: var(--color-black);
    font-size: 33px;
    line-height: 140px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1em;
    opacity: 0;
    animation: showUp .8s 2s;
    animation-fill-mode: forwards;
}
.user-form{
    width: 330px;
    display: flex;
}
.user-name{
    outline: none;
    background-color: unset;
    border: unset;
    width: 260px;
    height: 100px;
    font-size: 33px;
}
.blink{
    border-left: 2px solid var(--color-black);
    width: 2px;
    height: 48px;
    position: absolute;
    opacity: 0;
    animation: showUp .9s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
}
.stopBlink{
    animation: unset;
}
.user-form button{
    border: unset;
    background: unset;
    outline: none;
}
.user span:last-child{
    display: block;
    width: 90px;
    height: 90px;
    background-color: var(--color-mainB);
    border-radius: 100%;
    text-align: center;
    line-height: 90px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}
