body {
	text-align: center;
}

section, article{
	padding-top: 5vh;
	padding-left: 20vw;
	padding-right: 20vw;
}

h1 {
	padding-top: 5vh;
	font-size: 7vw;
}

.log h2 {
	font-size: 3rem;
}

li h2 {
	font-size: 2rem;
}

p {
	font-size: 1rem;
}

/* Twitch */
#twitch {
	padding-left: 16vw;
}

/* Blog */
.post {
	text-align: left;
	margin: 25px 18vw 25px 18vw;
	border: thin solid black ;
	padding-bottom: 40px;
}

.post h2 {
	font-size: 2em;
	padding-bottom: 15px;
}

.description {
	font-size: 1em;
}

/* Profiles */
.profile {
	width: 10vw;
	border-radius: 50%;
}

.container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.container li {
	white-space: nowrap;
	font-size: 0.8rem;
	padding-right: 10vw;
	padding-bottom: 1vw;
}

/* Test Profiles */
.profileTest {
	display: flex;
	justify-content: space-around;
}

.profileCard {
	width: 40%;
}

/* Nav Bar */
.nav {
	background-color: #E5E5E5;
}
.nav a {
	text-decoration: none;
	color: #580374;
}

.nav li {
	display: inline-block;
	padding-left: 1vw;
}

.nav a:hover {
	color: #FF3131;
}

/*Dropdown Menu */
.sub-nav {
	display: none;
	position: absolute;
}

.dropdown {
	position: relative;
}

.dropdown:hover .sub-nav {
	display: flex;
	flex-direction: column;
	background-color: #E5E5E5;
	text-align: left;
}