@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

* {
	margin: 0; 
	padding: 0; 
	box-sizing: border-box; 
	font-family: 'Roboto', sans-serif;
}

html {
	font-size: 16px;
}

body {
	background: darkblue;
}

.container {
	width: 100%;
	padding: 10px 0;
	display: flex;
	align-items: center;
	justify-content: center;

}

main {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	border-radius: 7px;
	width: 850px;
	max-width: calc(100% - 10px);
	padding: 5px;
}

main * {
	margin: 5px 0;
}

section {
	width: 850px;
	max-width: 100%;
	position: relative;
}

#voices {
	font-size: 16px;
	outline: none;
	padding: 3px 0;
	background: #fff;
	border: 1px solid #222;
}

#text {
	width: 100%;
	height: 350px;
	font-size: 18px;
	padding: 10px;
	letter-spacing: .5px;
	line-height: 23px;
	outline: none;
	border-radius: 8px;
	box-shadow: 0 0 20px 1px rgba(0,0,0,1);
}

#text:focus {

}

.paste {
	background: #EA2027;
	position: absolute;
	top: 8px;
	right: 3px;
	height: 37px;
	width: 37px;
	margin: 0;
}

#paste {
	cursor: pointer;
	font-size: 20px;
	color: #fff;
}

.btns {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin-top: 10px;
}

button {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	border: none;
	outline: none;
	background: #EA2027;
	display: grid;
	place-items: center;
	margin: 0 5px;
}

button i {
	font-size: 37px;
	color: #fff;
}

button:hover {
	box-shadow: 0 0 10px rgba(0,0,0,1);
}

#cancel {
	background: #00833a;
}