@import url('https://fonts.googleapis.com/css?family=Muli&display=swap');
@import url('https://fonts.googleapis.com/css?family=Lato&display=swap');

* {
	box-sizing: border-box;
}


h1 {
margin:0;

}

body {
	background-size: cover;
	background-position: center center;
	display: flex;
	font-family: 'Lato', sans-serif;
	font-size: 140%;
	flex-direction: column;
	height:max-content;
	align-self:flex-start;
	align-items: center;
	justify-content: center;
	margin: 0;
	min-height: 100vh;
}

h4 {
	margin: 0 0 5px;
}

progress {
	width: 100%;
}

p {
	line-height: 1.5;
}

.container {
	box-shadow: 0 4px 15px -5px rgba(0, 0, 0, 0.7);
	background-color: #fff;
	border: 2px solid #000;
	padding: 30px;
	width: 650px;
	max-width: 100%;
	text-align: center;
}

.container .text {
	display: flex;
	flex-wrap: wrap;
}

.container input {
	padding: 12px 15px;
	font-size: 20px;
	margin: 10px 0;
	width: 100%;
}

.start-btn {
	border: 0;
	background-color: #000;
	color: #fff;
	font-size: 16px;
	padding: 12px 15px;
}

.wpm {
	position: fixed;
	top: 20px;
	right: 20px;
	text-align: right;
}

.green {
	color: green;
}

.red {
	background-color: rgba(255, 0, 0, 0.5);
}

.underline {
	border-bottom: 1px solid #000;
}

.word {
	font-size: 20px;
	margin: 2px;
}

.share {
	color: #38a1f3;
}

@media screen and (max-width: 650px) {
	p {
		line-height: 1.3;
	}
	
	.container {
		margin-bottom: 50px;
		padding: 10px;
		width: 100%;
	}
	
	.wpm {
		display: none;
	}
}



@media screen and (max-width: 480px) {

	.social-panel-container.visible {
		transform: translateX(0px);
	}
	
	.floating-btn {
		right: 10px;
	}
}


.article {
	font-size: 0.8em;
	padding: 0 10%;
}




input[type='checkbox'] {
	display: none;
}
.wrap-collabsible {
	margin: 1.2rem 0;
}
.lbl-toggle {
	display: block;
	font-weight: bold;
	text-transform: none;
	text-align: center;
	color: rgb(112, 125, 197);
	background: rgba(128, 128, 128, 0);
	cursor: pointer;
	border-radius: 7px;
	transition: all 0.25s ease-out;
}
.lbl-toggle:hover {
	color: rgb(118, 125, 143);
}
.lbl-toggle::before {
	content: ' ';
	display: inline-block;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 5px solid currentColor;
	vertical-align: middle;
	margin-right: .7rem;
	transform: translateY(-2px);
	transition: transform .2s ease-out;
}
.toggle:checked+.lbl-toggle::before {
	transform: rotate(90deg) translateX(-3px);
}
.collapsible-content {
	max-height: 0px;
	overflow: auto;
	transition: max-height .25s ease-in-out;
}
.toggle:checked + .lbl-toggle + .collapsible-content {
	max-height: 350px;
}
.toggle:checked+.lbl-toggle {
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}
.collapsible-content .content-inner {
	background: grey(0, 105, 255, .2);
	border-bottom: 1px solid grey;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	padding: .5rem 1rem;
}
.collapsible-content p {
	margin-bottom: 0;
}