* {
	padding: 0;
	margin: 0;
}

html {
	font-family: "Courier Prime", "Be Vietnam", "Creepster" "Arial", "Sans-serif";
}

.time {
	font-family: "Courier Prime";
	color: #fff;
	text-align: center;
}

.hms {
	font-size: 14px;
}

.ampm {
	font-size: 14px;
}

.date {
	font-size: 14px;
}

#wrapper {
	background-color: palevioletred;
	display: flex;
	width: 100vw;
	height: 100vh;
	align-items: center;
	justify-content: center;
}

#content-container {
	display: flex;
	flex-direction: column;
	color: white;
	padding: 20px;
	align-items: center;
}

header {
	text-align: center;
	margin-bottom: 68px;
	font-family: "Creepster";
}

#main-nav {
	margin-bottom: 32px;
	font-family: "Courier Prime";
	font-size: 14px;
}

#main-nav ul li {
	padding-top: 10px;
}

#main-nav ul a {
	text-decoration: none;
	color: white;
	font-family: "Courier Prime";
}

#social-media-nav ul {
	display: flex;
	justify-content: space-around;
}

#social-media-nav ul li {
	padding: 10px;
}

.placementsMore {
	overflow: hidden;
}

nav ul li {
	list-style-type: none;
	line-height: 24px;
}

.logo-text {
	background-color: rgb(0, 0, 0);
	font-size: 42px;
	margin: 10px;
	line-height: 3rem;
	padding-left: 10px;
	padding-right: 10px;
	box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.social ul li img {
	height: 16px;
	width: 16px;
	padding: 1px;
}

#main-nav ul li a:hover {
	background-color: red;
}

.social-icon img:hover {
	background-color: white;
	border-radius: 5px;
}

.read-more-state {
	display: none;
}

.read-more-target {
	opacity: 0;
	max-height: 0;
	font-size: 0;
	transition: 0.24s ease;
	max-width: 350px;
	word-wrap: break-word;
	margin-left: 24px;
}


.read-more-state:checked ~ .read-more-wrap .read-more-target {
	opacity: 1;
	font-size: inherit;
	max-height: 999em;
}

.read-more-state ~ .read-more-trigger:before {
	content: "Show more";
}

.read-more-state:checked ~ .read-more-trigger:before {
	content: "Show less";
}

.read-more-trigger {
	cursor: pointer;
	display: flex;
	font-size: 10px;
}
