/*Creates the basic layout*/
html, body{
	width: 99%;
	height: 100%;
	color: #000000;
	font-family: poppins, sans-serif;
	font-style: normal;
	font-weight: 100;
	link-color: purple;
}

body{
	min-height: 100%;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	overflow-y: hidden; /* Hide vertical scrollbar */
  	overflow-x: hidden; /* Hide horizontal scrollbar */
}

body { 
    background: url("../images/background_museum.gif") repeat 0 0;
	background-color: #ffccff; /* Used if the image is unavailable */
}

img {
	border-radius: 50%; 
	width: 90%;
}

.logo-img {
	width: 25%;
	align-content: top;
	align-content: left;
}
	

main {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 150px;
}

main p{
	width: 90%;
	color: #000000;
	font-family: poppins, sans-serif;
	font-style: normal;
	font-weight: 100;
	link-color: purple;
}


main, header, footer{
	flex-shrink: 0;
}

/*custome CSS for Address*/
address{
	padding-top: 40px;
	font-family: poppins, sans-serif;
}

/*Fixed Nav Bar*/

.navbar {
  overflow: hidden;
  background-color: #ffccff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 75px;
}

.navbar a {
  float: left;
  display: block;
  color: purple;
  text-align: left;
  padding: 15px 16px;
  text-decoration: none;
  font-size: 14px;
}

.navbar a:hover {
  background: #F3A3E9;
  color: black;
}

.main {
  padding: 16px;
  margin-top: 30px;
  height: 1000px; /* Used in this example to enable scrolling */
}

/*Align the navigation with flexbox*/
nav{
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	margin-right: 5%;
	
	color: #000000;
	font-family: poppins, sans-serif;
	font-style: normal;
	font-weight: 100;
	link-color: purple;
}

nav a{
	padding: 1em;
}

a {
	font-family: poppins, sans-serif;
	font-style: normal;
	font-weight: 100;
	link-color: purple;
}

/*css for home*/

.container_artist {
    display: flex;
    align-items: stretch;
	padding-left: 5%;
}

.container_hold {
    flex: 1;
	width: 90%;
}

.verticalLine {
  border-left: thin solid #A31CC8;
  padding-left: 5px;
}

/*Fonts*/

h1, h2 {
  	color: #000000;
	font-family: delaney, sans-serif;
	font-style: normal;
	font-weight: 80%;
	
}

a:link {
  color: purple;
}

/* visited link */
a:visited {
  color: purple;
}

/* mouse over link */
a:hover {
  color: #79BFF2;
}

/* selected link */
a:active {
  color: rebeccapurple;
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

/*custom CSS for social icons*/
.fa {
  padding: 20px;
  font-size: 30px;
  width: 30px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
  border-radius: 50%;
}

.fa:hover {
    opacity: 0.7;
}

.fa-facebook {
  background: #3B5998;
  color: white;
}

.fa-twitter {
  background: #55ACEE;
  color: white;
}

.fa-google {
  background: #dd4b39;
  color: white;
}

.fa-linkedin {
  background: #007bb5;
  color: white;
}

.fa-youtube {
  background: #bb0000;
  color: white;
}

.fa-instagram {
  background: #125688;
  color: white;
}

.fa-pinterest {
  background: #cb2027;
  color: white;
}

/*custom CSS for image zoom*/
.zoom{
	display: flex;
}

.main-image{
	margin-right: 10px;
}

.main-image img{
	width: 600px;
	height: 400px;
}

footer{
	display: flex;
	flex-direction: row;
	justify-content: center;
	color: #000000;
	font-family: poppins, sans-serif;
	font-style: normal;
	font-weight: 80;
	link-color: purple;
	padding-bottom: 10px;
}
