body {
	padding: 0px;
	background: #f9eef5;
	color: #5c3363;
}

::selection {
    color: #b43b6b;
    background: #ebc6df;
  }

.container {
    display: grid; 
    grid-auto-flow: row dense; 
    grid-auto-columns: 1fr; 
    grid-template-columns: 0.7fr 2fr; 
    grid-template-rows: 0.8fr 2.2fr 0.1fr; 
    gap: 0px 5px; 
    grid-template-areas: 
      "Header Header"
      "Nav Content"
      "Footer Footer"; 
    justify-content: stretch; 
    align-content: stretch; 
    justify-items: stretch; 
    align-items: stretch; 
    width: 950px; 
    margin: auto;
}

    /* Header Area */
.Header {
    grid-area: Header;
    padding: 30px;
	text-align: center;
	background-image: url("img/header.png");
	background-color: #ebc6df;
    border: 1px solid #2d2b5a;
	height: 300px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}
.Header-Text {
	font-size: 50px;
	text-align: center;
	font-variant: small-caps;
	position: absolute;
	top: 250px;
    left: 230px;
	transform: translate(-50%, -50%);
	color: white;
	text-shadow: #2d2b5a 0px 0px 2.5px, #2d2b5a 0px 0px 2.5px, #2d2b5a 0px 0px 2.5px, #2d2b5a 0px 0px 2.5px, #2d2b5a 0px 0px 2.5px,#2d2b5a 0px 0px 2.5px;
	-webkit-font-smoothing: antialiased;
}

    /* Footer Area */
.Footer {
    grid-area: Footer;
    background-color: #f9eef5;
    border: 1px solid #2d2b5a;
    text-align: center;
    width: 950px;
    margin-top: 5px;
    bottom: 0;
}


    /* Main Navigation */
.Nav {
    grid-area: Nav;
    list-style-type: none;
	margin-top: 5px;
	padding: 0;
	color: #b43b6b;
	width: 100%;
	background-color: #ebc6df;
	border: 1px solid #2d2b5a;
}
.nav__list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.nav__link {
	display: block;
	text-align: center;
	border-bottom: 1px solid #2d2b5a;
	color: #b43b6b;
	padding: 8px 16px;
	text-decoration: none;
	font-weight: bold;
	letter-spacing: 2px;
	transition: all .4s ease-in-out;
}
.nav__link:hover {
	background-color: #b43b6b;
	color: white;
	letter-spacing: 4px;
	transform: scale(1); 
}
.active {
	background-color: #b43b6b;
	color: white;
	letter-spacing: 4px;
}

    /* Main Content Area */
.Content {
    grid-area: Content;
}
.main {
	background-color: #f9eef5;
	padding: 5px;
	margin-top: 5px;
	overflow: auto;
    border: 1px solid #2d2b5a;
	scrollbar-color: #2d2b5a #f9eef5;
	scrollbar-width: thin;
}

    /* iFrame */
#update {
	width: 100%;
	height: 500px;
	border: none;
	margin: 0;
	scrollbar-color: #2d2b5a #ebc6df;
	scrollbar-width: thin;
}

    /* Scrollable Div */
.scroll {
	overflow-y: scroll;
	overflow-x: hidden;
	border: none;
	margin: 0;
	padding: 0;
	height: 350px;
	scrollbar-color: #2d2b5a #ebc6df;
	scrollbar-width: thin;
}

	/* Links */
a {
	color: #b43b6b;
	font-weight: bold;
	text-decoration: none;
	transition: all .4s ease-in-out; 
}
a:hover {
	color: #2d2b5a;
}

	/* Image Section */
img.blorb {
	transition: all .4s ease-in-out; 
	opacity: 1;
}
img.blorb:hover {
	opacity: 0.7;
}
img.blorb2 {
	border: 1px solid #b43b6b;
	transition: all .4s ease-in-out; 
	opacity: 1;
}
img.blorb2:hover {
	opacity: 0.7;
}
	
.btn {
	border: 1px solid #2d2b5a;
	padding: 0;
	margin: 10px;
	cursor: pointer;
	background-color: #2d2b5a;
	position: relative;
	transition: all .4s ease-in-out;
	opacity: 1;
}
.btn:hover {
	opacity: 0.7;
}
.ribbon {
	border: 1px solid #2d2b5a;
	width: 60px;
	font-size: 14px;
	padding: 4px;
	position: absolute;
	right: -20px;
	top: -12px;
	text-align: center;
	transform: rotate(20deg);
	background-color: #B43B75;
	color: #EBE3E6;
}
.ribbon2 {
	border: 1px solid #2d2b5a;
	width: 60px;
	font-size: 14px;
	padding: 4px;
	position: absolute;
	right: -20px;
	top: -12px;
	text-align: center;
	transform: rotate(20deg);
	background-color: #2d2b5a;
	color: #EBE3E6;
}

    /* Text Headers */
h1 {
	font-size: 50px;
	color: white;
	font-weight: bold;
	font-variant: small-caps;
}

h2 {
	font-size: 30px;
	font-variant: small-caps;
	text-indent: 5px;
	color: #b43b6b;
	border: solid #2d2b5a;
	border-width: 1px 1px 1px 10px;
	background-color: #ebc6df;
	margin-bottom: 2px;
}
h3 {
	font-size: 30px;
	font-variant: small-caps;
	background-color: #2d2b5a;
	color: white;
	text-align: center;
	margin: 0;
}
h4 {
	font-size: 20px;
	font-weight: bold;
	font-variant: small-caps;
	margin: 5px;
	border-left: 5px solid #b43b6b;
	text-indent: 2px;
}
h5 {
	font-size: 15px;
	border-bottom: 1px solid #2d2b5a;
	margin: 0px;
}
h6 {
	font-size: 25px;
	font-weight: bold;
	font-variant: small-caps;
	margin: 5px;
	border-left: 5px solid #b43b6b;
	border-bottom: 1px solid #b43b6b;
	text-indent: 2px;
}

    /* Scroll Bar */
    /* width */
::-webkit-scrollbar {
	width: 10px;
}
    /* Track */
::-webkit-scrollbar-track {
	background: #f9eef5;
}
    /* Handle */
::-webkit-scrollbar-thumb {
	background: #ebc6df;
}
    /* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: #db95bd;
}