h3{
    margin-bottom: 0px;
    margin-top: 0px;
}

p {
	margin-top: 0px;
	margin-bottom: 0px;
	line-height: 1.1;
}

article a:hover {
	color: unset;
  }


.home {
	height: 100%;
	position: relative;
    line-height: 1.1;
  }
  

#myVideo {
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: -1;
    width: auto;
    min-height: 100%;
    min-width: 100%;
    left: 50%;
    transform: translate(-50%);
	}

.header {
	display:flex;
	justify-content: center;
	flex-wrap: wrap;
	column-gap: 50px;
	margin-top: 20px;
	}

.logo-img {
	display: block;
	}

.name {
	font-family: "Permanent Marker", lato, verdana, sans-serif;
	font-size: 4em;
	font-weight: normal;
	text-align: center;
	text-shadow: 0px 0px 10px rgb(0, 0, 0);
}

.nameDiv {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.sub-title{
	display: block;
	text-align: center;
	font-size: 1.5em;
	text-shadow: 0px 0px 10px rgb(0, 0, 0);
	max-width: 430px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 5px;
	margin-bottom: 13px;
}

.social-media
{
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
}

.email
{
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
}

.sm-button
{
	padding: 10px 13px 10px 13px;
	border-radius: 100%;
	text-align: center;
	text-decoration: none;
	background: #000329;
}

.sm-button > img{
	width: 30px;
	height: 30px;
	filter: invert(100%)
}

/* Add a hover effect if you want */
.sm-button:hover {
	
	background-color: #20d2d6;
}

.two-column
{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	margin-top: 5px;
}

.scroll-to-blog{
	display:none;
	width: 100%;
	text-align: center;
	font-style: italic;

}

.projects-index{
	display:flex;
	justify-content: center;
	align-content: center;
	flex-direction: column;
	align-items: center;
	max-width: 500px;
}

.projects-index > h2{
	font-size: 2.5em;
	text-shadow: 0px 0px 10px rgb(0, 0, 0);
    margin-top: 0px;
	margin-bottom: 10px;
	text-align: center;
}

.project-entries {
	display:flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	row-gap: 20px;
}

.project-card {
	display: flex;
	flex-direction: column;
	margin: 5px;
	background-color: #0a0b1c;
	transition: 0.2s;
	color: white;
	text-decoration: none;
	border-style: solid;
	border-color: #005051c4;
	max-width: 150px;
	border-radius: 0px 0px 20px 20px;
	text-align: center;
	height: 250px;
}

.project-card:hover{
	background-color: #005051c4;
	opacity: 0.8;
	transition: 0.2s;
}

.project-card h3 {
	font-size: 1em;
	padding-left: 3px;
	padding-right: 3px;
}

.project-text {
	margin: auto;
}


.blog-index{
	display:flex;
	justify-content: center;
	align-content: center;
	flex-direction: column;
	align-items: center;
}

.blog-index > h2{
	font-size: 2.5em;
	text-shadow: 0px 0px 10px rgb(0, 0, 0);
    margin-top: 0px;
	margin-bottom: 10px;
	text-align: center;
}
  
.post-card {
	display: flex;
	flex-direction: row;
	gap: 10px;
	margin: 5px;
	border-radius: 0px 20px 20px 0px;
	background-color: #0a0b1c;
	transition: 0.2s;
	color: white;
	text-decoration: none;
	border-style: solid;
	border-color: #005051c4;
	padding-right: 30px;
	max-width: 650px;
}

.post-card:hover{
	background-color: #005051c4;
	opacity: 0.8;
	transition: 0.2s;
}

.post-image{
	max-height: 250px;
	width: auto;
	max-width: 40%;
	height: auto;
	padding-right: 10px;
}

.post-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-size: 0.9rem;
}


.date{
	font-style: italic;
	color: grey;
	margin-top: 5px;
	margin-bottom: 5px;
}

.summary{
	font-size: 1.1rem;
	letter-spacing: 0.05em;
	margin-bottom: 5px;
}

.more-button {
	margin: 5px;
	border-radius: 10px;
	background-color: #005051;
	transition: 0.2s;
	color: white;
	text-decoration: none;
	padding: 10px;
	font-size: 1.1rem;
}

.more-button:hover{
	background-color: #005051c4;
	opacity: 0.8;
	transition: 0.2s;
}

@media only screen and (max-width: 550px) 
{
	.name{
		font-size: 15vw;
	}
}

@media only screen and (max-width: 900px) 
{
	.post-card {
		flex-direction: column;
		justify-content: center;
		padding-bottom: 20px;
		padding-right: 0px;
		border-radius: 0px 0px 20px 20px;
	}

	.post-image{
		max-width: 100%;
		max-height: 100%;
		padding-right: 0px;
	}

	.post-text {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding-left: 10px;
		padding-right: 10px;
	}

}

@media only screen and (max-width: 1240px) 
{
	.scroll-to-blog{
		display: block;
	}

	.projects-index{
		max-width: unset;
	}

	.project-entries {
		row-gap: 5px;
	}
}

