/*Styles go in here*/

html,body {margin:0; padding:0;}

body {
	font-family: 'Rokkitt', 'courier', serif;
	color:  black;
	background-color: #f5fffc;

	/* background-size: 500px, 500px;
	background-image: linear-gradient(#819e99, #e5eeed, #e5eeed, #e5eeed); */

	background-image: url('../img/BGFadeTransparent.png');
	background-repeat: no-repeat;
	background-position: fixed;
	background-size: 100% 100vh;
}

.page-container {
	position: relative;
	min-height: 100vh;
}

.top-container {
	background-color: black;
	min-height: 10px;
	text-align: top-left;
	color: white;
  }
  
.header {
	background-image: url('../img/Header.svg');
	min-height: 400px;
	background-position: right bottom;
	background-repeat: no-repeat;
	background-size: cover;
	padding:  0;
	text-align: center;
}

.subject {
	font-weight: bold;
	margin-bottom: 0;
	color: darkmagenta;
}

.title {
	margin: 0;
	padding-left: 2px;
	font-weight: 300;
	color: white;
	text-decoration: none
}

.title:hover {
	color: purple;
	text-decoration: none;
}

.date {
	margin-top: 5px;
	color: gray;
}

.entry {
	margin-bottom: 10vh;
}

.sh {
	color: lightgray;
	text-align: center;
}

p {
	display: block;
	margin: 20px auto;
	text-align: left;
	line-height: 1.4em;
	font-size: larger;
}

.plink {
	display: block;
	margin: 20px auto;
	text-align: left;
	line-height: 1.4em;
	font-size: larger;
}

code {
	width: 50%;
	display: block;
	margin: 20px 0;
	background-color:cadetblue;
	color: #f5fffc;
}

footer {
	width:  100%;
	position: relative;
	bottom: 0;
	background-color: transparent;
	text-align: center;
	margin:  auto;
	padding: 16px 0;
}

.content {
	padding: 10vh;
	margin: auto;
	max-width: 800px;
}

.center {
	display: block;
	padding: 40px 0;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

.glink {
	display: flex;
	justify-content: center;
	padding: 0;
	margin-left: auto;
	margin-right: auto;
	/* width: 100%; */
}

.ilink {
	/* display: inline-flex; */
	width: 52px;
	padding-left: 20px;
}

.ilink:hover {
	width: 56px;
	padding-left: 18px;
}

.dlink {
	/* display: inline-flex; */
	width: 400px;
	margin: 0;
}

iframe {
    display: block;
	margin-top: 5vh;
	margin-left: auto;
	margin-right: auto;
    border-style:none;
	border-radius: 20px;
}

  /*-----------------------------------------------------*/
.btntext {
	margin: 0;
	color: #854c3b;
}

.pbtn {
	position: relative;
	margin-top: 40px;
	margin-left: auto;
	margin-right: auto;
	width: 120px;
	height: 120px;
	border-radius: 100px;
	background: radial-gradient(#ebdbaf, #ccb474);
	/* background-color: #ccb474; */
	text-align: center;
	line-height: 120px;
}

.btn {
	position: absolute;
	top: 0;
	left: 0;
	margin: 25px;
	height: 70px;
	width: 70px;
	border: 2px dashed black;
	border-radius: 100px;
	background-color: #b69077;
	text-align: center;
	font-family: 'Rokkitt', 'courier', serif;
	font-size: 1.17em;
	transition: 1s;
	}

.btn:hover {
	transform: rotate(90deg);
	margin: 0px;
	height: 120px;
	width: 120px;
	border-color: black;
	background-color: transparent;
	color: transparent;
	}