*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    color: #fff;
}
body{
    background: #000112;
    overflow-x: hidden;
}
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 100px;
}
.navigation ul{
    display: flex;
    list-style-type: none;
    gap: 10px;
}
.navigation ul li a{
    list-style-type: none;
    text-decoration: none;
}
.navigation ul li a:hover{
    color: #0a12ef;
}
.message{
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.395);
    width: 500px;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 20px;
}
.messages{
    position: relative;
    left: 50%;
    transform: translateX(-15%);
}
.message .image img{
    width: 50px;
    border-radius: 50%;
    border: #fff solid 3px;
}
.message .userName span{
    color: #0011ff;
}
.message span{
    cursor: default;
}
.message #messageUser , .message .userName span{
    display: inline;
}
.input{
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
}
.input input{
    background-color: #111;
    border: none;
    outline: none;
    padding: 10px 20px;
    width: 500px;
    border-radius: 10px;
}
.input button{
    background-color: #38009f;
    border: none;
    outline: none;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
}
.input button:hover{
    background-color: #190046;
}