/*Stylesheet for Studio Website*/
* {
    margin: 0;
    vertical-align: baseline;
}
body {
  width:95%; 
  margin: 0 auto; 
  background: linear-gradient(#E770F6 0%, #7971FB 39.91%, #8DACFA 63.29%, #E6F5FC 92.19%); /*background*/
  font-family: arial, sans-serif;
}
header {
  height: 5em;
  background-color: white;
  text-align: center;
  line-height: 5em;
}
header h1 {
    font-family: lucida handwriting;
}
nav {
  height: 2em;
  background-color: #ff0088;
}
nav ul li, nav a:link, nav a:visited{
    display: inline-block;
    float: left; 
    line-height: 2em;
    width: 8em;
    text-align: center;
    color: black;
    text-decoration: none;
}
nav li:hover, nav a:hover {
    color: lightpink; 
}
navb {
    height: 2em; 
    background-color: lightpink;
}
navb ul {
    display: block;
}
navb ul li, nav a{
    display: block; 
    float: right; 
    line-height: 2em; 
    width: 2em;
}
/* Dropdown Button */
.dropbtn {
    background-color: #ff0088;
    color: black;
    padding: 5px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
    background-color: hotpink;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: white}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}
main {
    min-height: 550px;
  background-color: white;
  background-repeat: no-repeat;
  background-position: 50% 60%;
  background-attachment: fixed; 
  background-size: 30%;
  font-family: arial, sans-serif; 
    padding: 3em;
    font-size: 13px;
    text-align: justify;
}
.dropdown {
  display: inline-block;
  position: relative;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 160px;
  box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.2);
  z-index: 1;
}
.dropdown:hover .dropdown-content {
  display: block;
  background-color: white;
}
.dropdown-content a {
  display: block;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
}
.dropdown-content a:hover {
  color: #FFFFFF;
  background-color: hotpink;
}
#sidebarA {
    width: 350px;
    height: 500px;
    margin-top: 4em;
    float: left;
    font-size: 16px;
    text-align: justify;
}
section {
    width: 20%; 
    float: left;
    margin-top: 5em;
    margin-left:0em;
}
@media only screen and (max-width: 1000px) {
    aside {
        width: 100%;
        min-height: 10em;
    }
    article {
        width: 100%;
        min-height: 10em;
    }
    section {
        width: 100%;
    }
}
@media only screen and (min-width: 350px) {
    aside {
        width: 100%;
        min-height: 10em;
    }
    article {
        width: 100%;
        min-height: 10em;
    }    
    
}
img { 
    margin: 0 10px; 
} 
img:hover {
    opacity: 0.5;
    filter: alpha(opacity=50);
}
.lbsize {
    display: block;
    width: 6em;
    float: left; 
    text-align: right;
}
#sidebarB {
    width: 450px;
    height: 500px;
    margin-top: 3em;
    margin-left: 4em;
    float: right;
    font-size: 14px;
    text-align: center;
}
aside {
    width: 40%;
    float: right;
    margin-top: 0em;
    font-size: 16px;
}
footer{
    height: 4em;
    padding-left: 3em; 
    padding-top: 1em; 
    text-align: right;
    clear: left;
}