* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: black;
}

.messageArea {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	gap: 10px;
}
.nameArea {
	position: absolute;
	left: 50%;
	top: 60%;
	transform: translate(-50%, -50%);
	display: flex;
	gap: 10px;
}

.messageInput {
	background-color: white;
	width: 100%;
	height: 2%;
	
	text-align: center;
	-webkit-text-fill-color: black;
}

.sendButton {
	background-color: white;
	-webkit-text-fill-color: black;
	width: 30%;
	height: 2%;
}

.messageReciever {
    width: 50%;
    position: fixed;

    left: 50%;
    top: 20px;
    transform: translateX(-50%);

    display: flex;
    flex-direction: column;
}
.message {
	background-color: white;
	-webkit-text-fill-color: black;
}