/* global styling */
html {
    margin: 0;
    padding: 0;
}
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: black;
    background: url("https://codecraftworks.dev/web/zbLR7ZopK6pbWT5WxtDG/assets/a17-bg-polkadot.gif");
}
/* text styling */
h1 {
  color: #FF247F;
  font-size: 50px;
  margin-bottom: 0px;
}
h3 {
    font-size: 1.4em;
    letter-spacing: 1px;
    color: black;
}
p {
    text-align: justify;
}
/* hyperlinks */
a:link {
    color: #FF247F;
    text-decoration: none;
    font-weight: bold;
}
a:visited {
    color: black;
    text-decoration: none;
    font-weight: bold;
}
a:hover, a:focus, a:active {
    color: gray;
    text-decoration: underline;
}
abbr {
    border-bottom: none;
}
.page-wrapper {
		width: 60%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 50px;
    background: rgba(255,255,255,.92);
    border-radius: 30px;
   box-shadow: 0 0 20px rgba(255,120,180,.25), 0 0 50px rgba(255,120,180,.15);
  
}
/* intro section */
.intro {
    width: 100%;
    min-width: 470px;
}
header {
    padding-top: 0;
  	margin-bottom: 0;
}
header h2 {
    float: right;
    width: 200px;
    height: 18px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}
/* summary positioning */
.summary {
    float: left;
    width: 220px;
    margin: 80px 30px 20px 0;
    padding: 15px;
    background: #ffe3ef;
    border-radius: 18px;
}
.summary p {
    text-align: center;
    font-style: italic;
    line-height: 2;
}

/* main content */

/* sets first paragraph to the left
with space for the summary */
.preamble {
    clear: right;
  	margin-left: 280px;
    padding: 0 10px;
}
.supporting {
    padding: 10px;
    margin-bottom: 40px;
}
/* footer */
footer {
    text-align: center;
    padding: 20px 20px;
}
footer a {
    margin: 0 10px;
}
/* sidebar styling */
.sidebar {
    position: absolute;
    top: 40px;
    right: 30px;
    width: 200px;
}
.sidebar .wrapper {
    background:white;
    border-radius:25px;
    padding:25px;
    box-shadow:0 15px 35px rgba(0,0,0,.2);
}
.sidebar ul {
    margin: 0;
    padding: 0;
}
.sidebar li {
    list-style: none;
    margin-bottom: 10px;
    line-height: 1.5;
}
.sidebar li:last-child {
    margin-bottom: 0;
}
.sidebar li a:link {
    color: #FF247F;
}
.sidebar li a:visited {
    color: white;
}
/* additional decoration */

/* adds underline to headers */
h3::after{
	content: "";
	display: block;
	width: 20px;
	height: 3px;
	background: #ff5ca8;
	margin-top: 8px;
	border-radius: 10px;
}