@charset "utf-8";

html {
	line-height: 1.15;
	font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace"
}

header, footer, main, nav {
	display: block;
}

hr {
	border-color: hotpink;
	border-style: solid;
	border-width: 1px;
}

.bg-dark {
	background-color: #ffdcdd;
}

nav {
	border-style: solid;
}

nav .logo{
	display: inline-block;
	white-space: nowrap;
	text-decoration: none;
}

nav ul {
	padding: 0;
	margin: 0;
	list-style: none;
	position: relative;

}

nav ul li {
	display: inline-block;
	background-color: #ffdcdd;
	border-style: solid;
	border-top-width: 0px;
	border-bottom-width: 0px;

}

nav ul ul li {
	border-bottom-width: medium;
}

nav p {
	padding:0 25px;
	font-size:25px;
	line-height: 0rem;
}

nav .brand {
	display:block;
	padding:0 25px;	
	color:#000000;
	font-size:25px;
}

nav a {
	display:block;
	padding:0 1rem;
	margin: 0;
	color:#000000;
	font-size:25px;
	line-height: 3.1rem;
	text-decoration:none;
}

nav ul ul a {
	font-size: 15px;
	padding: 0 0px;
	line-height: 40px;
	border: medium #000000;

}
nav ul ul ul li {
	position: relative;
	top:-3.35rem;
	left:200px;
	border-bottom-width: medium;
	border-top-width: thin;
}

nav a:hover { 
	background-color: #ffaaaa; 
}
nav ul ul {
	display: none;
	position: absolute; 
	top: 3.3rem;
}
	
nav ul li:hover > ul {
	display:inherit;
}
	
nav ul ul li {
	width:200px;
	float:none;
	display:list-item;
	position: relative;
}


nav li > a:after { content:  ' +'; }
nav li > a:only-child:after { content: ''; }

blockquote {
	font-style: italic;
}

.quote {
	background-color: pink;
	text-align: center;
	border: medium;
	border-style: solid;
	border-bottom-left-radius: 50px;
	border-top-right-radius: 50px;
	margin-bottom: 1rem;
	width: 100%;
}

.quote-attribution {
	font-size: 25px;
	font-weight: bolder;
	text-align: right;
}

.profile {
	display: flex;
}

.profile h1 {
	font-size: 75px
}

.profile p {
	margin-top: -2.5rem
}

.profile-text {
	text-align: left;
	margin-left: 2rem;
	width: 75%
}

.pfp {
	height: 25rem;
	margin-top: .5rem;
	margin-bottom: .5rem;
	margin-left: auto;
	margin-right: 1.5rem;
	border-radius: 25%;
	border-style: solid
}

.socials {
	text-align: right;
	font
}

.socials a {
	font-size: 25px;
	padding: 0 1rem;
	color: black;
	border-style: solid;
	border-width: thin;
	border-color: #ffdcdd;
}
.socials a:hover {
	background-color: pink;
	border-radius: 15%;
	border-color: #000000;

}

.about {
}

.about h1 {
	font-size: 30px;
	line-height: 0px;
	text-align: center;
}

.featured {
	display: flex;
	flex-wrap: wrap;
	align-content: center
}

.post {
	flex: 0 0 30%;
	padding: auto;
	margin: auto;
	height: 27em;
	background-color: #FFE7E7;
	border-style: solid;
	border-right-width: thin;
	border-top-width: thin;
}

.post hr {
	border-color: black;
	border-style: solid;
	border-width: 1px;
	margin: 1 2rem;
}


.post-title {
	text-align: center;
	background-color: pink;
	margin: auto;
}

.post-img {
	text-align: center;
	margin: .5rem auto;
	width: 25rem;
}

.post-img img {
	width: 99.5%;
	border: thin solid black;
	border-bottom-style: none;
}

.tags {
	background-color: light-pink;
	border: 1px solid black;
	border-top-style: none;
	border-bottom-left-radius: 75%;
	text-align: right;
	margin-top: -.3rem;
}

.tag {
	color: black;
	border-bottom: thin solid black;
	padding: 0 .5rem;
}

.tag-fashion {
	background-color: hotpink;
}

.tag-tech {
	background-color: lightblue;
}

.post-text {
	padding: 0 2rem;
}
.post-link::before,
.post-link::after {
  	position: absolute;
  	content: "";
}

.links {
	text-align: center;
}

.post-link {
	margin: 2rem auto;
  	position: relative;
  	display: inline-block;
  	width: auto; height: auto;
  	background-color: transparent;
  	border: none;
  	cursor: pointer;
}	
.post-link span {
	position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: bolder;
    letter-spacing: 2px;
    text-transform: uppercase;
    top: 0; left: 0;
    width: 100%;
    padding: 10px 15px;
    transition: 0.3s;
	box-sizing: border-box;
  	margin: 0;
}

.post-link::before, .post-link::after {
	background: transparent;
  	z-index: 2;
	width: 10%; height: 25%;
	transition: 0.35s
}

.post-link:hover::before,
.post-link:hover::after {
  width: 99%;
  height: 98%;
}

.post-link::after {
	bottom: 0;
	right: 0;
	border-right: 1px solid rgb(28, 31, 30);
	border-bottom: 1px solid rgb(28, 31, 30);
	margin-top: -20px;
}

.post-link::before {
	top: 0; left: 0;
  	border-left: 1px solid rgb(28, 31, 30);
  	border-top: 1px solid rgb(28, 31, 30);}
