@import url(https://fonts.googleapis.com/css?family=Vibur);
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');

* {
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
}

html,
body {
  	height: 100%;
	overflow-y: hidden;
}

body {
	background: #112 url(https://images.weserv.nl/?url=i.imgur.com/6QJjYMe.jpg)  center no-repeat;
	background-size: cover;
	margin: 0
}

.logo {
	text-align: center;
	width: 100%;
	position: absolute;
	top: 0;
	user-select: none;
	z-index: 2;
}

.logo b{
	font: 400 19vh "Vibur";
	color: #fee;
	text-shadow: 0 -40px 100px, 0 0 2px, 0 0 1em #fff, 0 0 0.5em #fff, 0 0 0.1em #fff, 0 10px 3px #000;
}

.logo b span{
  	animation: blink linear infinite 2s;
}

.logo b span:nth-of-type(2){
  	animation: blink linear infinite 3s;
}

.container {
	width: 100%;
	margin-top: 300px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
}

.title {
	width: 800px;
	height: 600px;
	font-family: "Montserrat";
	display: flex;
	flex-direction: column;
    align-items: center;
    justify-content: center;
}

.title h1 {
	text-align: center;
	font-size: 9vh;
}

.title h1:nth-of-type(2) {
	margin-top: -110px;
	font-style: italic;
	color: #e50b0b;
	text-shadow: 0 -40px 100px, 0 0 2px, 0 0 1em #e50b0b, 0 0 0.5em #e50b0b, 0 0 0.1em #e50b0b, 0 10px 3px #000;
}

.chat {
	width: 600px;
	height: 600px;
	position: relative;
	box-shadow:
		0 0 0.1vw  0.4vw #fff7f7,   
		0 0 0.4vw  0.6vw #e97272, 
		0 0   4vw  0.4vw #e50b0b,
		inset 0 0 1.5vw  0.4vw #e50b0b,
		inset 0 0 0.4vw  0.2vw #e97272,
		inset 0 0 0.5vw  0.2vw #fff7f7;
	border-radius: .5rem;
}

.chat h1 {
	text-align: center;
	margin-top: -50px;
	font-family: "Montserrat";
}

@keyframes blink {
	78% {
		color: inherit;
		text-shadow: inherit;
	}
	79%{
		color: #333;
	}
	80% {
		
		text-shadow: none;
	}
	81% {
		color: inherit;
		text-shadow: inherit;
	}
	82% {
		color: #333;
		text-shadow: none;
	}
	83% {
		color: inherit;
		text-shadow: inherit;
	}
	92% {
		color: #333;
		text-shadow: none;
	}
	92.5% {
		color: inherit;
		text-shadow: inherit;
	}
}