/* Base Element Styles */
body {
  margin: 0;
  padding: 0;
  font-family: 'Ubuntu', sans-serif;
  background: rgb(141,43,172);
  background: linear-gradient(320deg, rgba(141,43,172,1) 0%, rgba(213,162,235,1) 100%);
  color: #333;
}

h2 {
  font-family: 'Tomorrow', sans-serif;
  font-size: 1.8em;
  margin-top: 0;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.35);
}

p {
  font-weight: bold;
  font-size: 20px;
}

li {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 8px;
}

ol {
  padding-left: 20px;
}

a:hover {
  text-decoration: underline wavy;
}

hr {
  border: 2px solid #FFFFFF;
  opacity: 0.15;
}

/* ID Styles */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(0deg, rgba(136,48,164,1) 0%, rgba(283,114,255,1) 100%);
  color: white;
  text-align: center;
  padding: 40px 20px;
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.35);
  z-index: 1000;
  border-bottom: 7.5px solid #cd56d8;
  display: flex;
  align-items: center;
  justify-content: center;
}

#header h1 {
  margin: 0;
  font-family: 'Original Surfer', sans-serif;
  font-size: 250%;
  text-decoration: underline wavy #d48efa;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.35);
  margin-right: 10px;
}

#header-icon {
  max-height: 75px;
  margin-left: 10px;
}


#content {
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 120px;
  padding-bottom: 40px;
}

#footer {
  font-family: 'Rubik', sans-serif;
  margin-top: 50px;
  padding: 15px;
  text-align: center;
  border-radius: 10px;
}

/* Class Styles */

/* Panel Types */
.panel {
  margin: 30px 0;
  padding: 20px;
  border-radius: 10px;
  overflow: auto;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.35);
}

.purple {
  background: rgb(131,62,153);
	background: linear-gradient(0deg, rgba(131,62,153,1) 0%, rgba(174,97,184,1) 100%);
  color: white;
  border: 5px solid #824b94;
}

.orange {
  background: rgb(238,137,91);
  background: linear-gradient(0deg, rgba(238,137,91,1) 0%, rgba(255,176,126,1) 100%);
  color: black;
  border: 5px solid #b86b1f;
}

/* Typography */
.panel-text {
  font-family: 'Ubuntu', sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

.center {
  text-align: center;
}

.smaller {
  font-size: 15px;
}

h2.smaller {
  font-size: 1.65em;
}

/* Images */
.panel-image {
  max-width: 200px;
  height: auto;
  border: 3px solid #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  margin: 10px;
}

.float-left {
  float: left;
  margin-right: 20px;
}

.float-right {
  float: right;
  margin-left: 20px;
}

.image-container {
  width: 100%;
  text-align: center;
  margin: 15px 0;
}

.image-container img {
  max-width: 90%;
  height: auto;
  border: 3px solid #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Links */
.link-container {
  text-align: center;
  margin: 15px 0;
  clear: both;
}

.panel-link {
  font-family: 'Rubik', sans-serif;
  display: inline-block;
  padding: 8px 15px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.panel-link:hover {
  transform: scale(1.05);
  text-decoration: underline wavy;
}

.panel-link.purple {
  background-color: #942fb5;
  color: white;
}

.panel-link.orange {
  background-color: #fa9c37;
  color: #333;
}

/* Combined Element/Class Styles */
.purple h2 {
  text-decoration: underline wavy #e7baff;
}

.orange h2 {
  text-decoration: underline wavy #8a4f16;
}

.purple a {
  color: #ffd8af;
}

.orange a {
  color: #742594;
}

.panel.purple hr {
  opacity: 0
}