@import url('https://fonts.googleapis.com/css?family=Baloo+Tammudu|Slabo+27px');
* {
    box-sizing: border-box;
}

.dark {
    background: #842eb3;
}

/*Links*/

a:link, a:visited {
    color: #842eb3;
}

a:hover {
    color: #842eb380;
}

.links>a {
    display: block;
}

.panel.links>a {
    padding: 20px 0px 20px 0px;
    font-size: 1.2em;
}

/*End Links*/

/*Headings*/

h1 {
    margin: 0px;
    padding: 0px;
    color: #842eb3;
    font-family: "Baloo Tammudu", sans-serif;
    line-height: 350%;
}

h2 {
    margin: 0px;
    padding: 0px;
    color: #842eb3;
    font-family: "Baloo Tammudu", sans-serif;
    line-height: 120%;
}

h3 {
    margin: 0px;
    padding: 0px;
    color: #693668;
    font-family: "Baloo Tammudu", sans-serif;
    line-height: 100%;
}

/*End Headings*/

/*Paragraphs*/

p {
    color: black;
}

/*End Paragraphs*/

/*Graphic Container*/

.graphic-container {
    text-align: center;
}

.graphic-container img {
    width: 100%;
}

.circle {
    border-radius: 50%;
    max-width: 300px;
}

/*End Graphic Container*/

html {
    padding: 0px;
    margin: 0px;
    font-size: 20px;
    font-family: "Slabo 27px", serif;
}

body {
    padding: 0px;
    margin: 0px;
}

nav {
    z-index: 2000;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    background-color: #fafafa;
    margin: 0px;
    padding: 3px;
    text-align: center;
    box-shadow: 0px 5px 5px #fafafa;
    font-family: "Baloo Tammudu", sans-serif;
}

nav a {
    display: inline-block;
    padding: 0px 10px;
}

nav a::before {
    content: attr(href);
    font-size: 150%;
}

.content {
    margin: 70px 0px 0px 0px;
    width: 100%;
    text-align: center;
}

/*Sections*/

section {
    min-height: 100vh;
    padding: 0px 10px 30px 10px;
}

section.dark {
    background-color: #842eb3;
}

section.dark h1 {
    color: #f2f2f2;
}

/*End Sections*/

p {
    max-width: 450px;
    margin: 10px auto;
}

/*Social Media*/

#social-media {
    max-width: 768px;
    text-align: left;
    display: inline-block;
    margin-top: 50px;
}

.social-medium {
    display: block;
    text-decoration: none;
}

.social-medium+.social-medium {
    margin-top: 20px
}

.social-medium-logo {
    width: 50px;
    display: inline-block;
}

.social-medium-label {
    display: inline-block;
    vertical-align: top;
    line-height: 250%;
    margin-left: 20px
}

.social-medium:hover .social-medium-logo {
    transform: scale(0.9);
    transition: transform 0.2s;
}

/*End Social Media*/

/*Panels*/

.panel {
    display: block;
    color: initial;
    text-decoration: initial;
    background-color: #fafafa;
    margin: 0px auto;
    box-shadow: 0px 0px 12px #f2f2f2;
    max-width: 768px;
    height: auto;
}

.panel:link {
    color: initial;
}

.panel+.panel {
    margin-top: 20px;
}

.panel-image {
    display: inline-block;
    width: 250px;
    margin-top: 40px;
    margin-bottom: 20px;
    background-size: 100%;
    box-shadow: 0px 0px 12px #e0e0e0;
    transform: perspective(800px) rotateY(45deg);
    transition: transform 0.5s;
}

.panel:hover .panel-image {
    transform: perspective(800px) rotateY(0deg);
}

.panel-description {
    padding-bottom: 20px;
}

/*End Panels*/

/*Footer*/

footer {
    background: #842eb3;
    text-align: center;
    padding: 30px 10px;
}

#logo-container {
    display: inline-block;
    border-radius: 104px;
    border: 2px solid white;
    width: 100%;
    max-width: 450px;
    background-color: white;
    padding: 0px 20px;
}

#ShoutEd-logo {
    width: 100%;
}

#e-mark {
    transition: all 0.33s ease-in-out;
}

#e-mark:hover {
    fill: rgba(255, 255, 255, 0);
    stroke: #842eb3;
    stroke-width: 50;
    stroke-opacity: 0;
}

/*End Footer*/