
/*	Ann Byrne-S301725, HIT164-Assignment 3	*/
/*	Version __*/

/* Text Formatting - w3Schools.com*/
h1 {
	font-family: 'Garamond';
	font-size: 35px;
	padding-left: 35px;
}

h2 {
	font-family: 'Garamond';
	padding-left: 220px;
}

h3 {
	font-family: 'Garamond';
	padding-left: 220px;
}

h4 {
	font-family: 'Garamond';
	padding-left: 200px;
}

p {
	padding-left: 240px;
}

ul {
	padding-left: 250px;
} 

/* Side Bar navigation - w3Schools.com*/
.sidenav {
	height: 100%;
	width: 160px;
	position: fixed;
	z-index: 1;
	top: 0;
	left: 0;
	background-color: #000000;
	overflow-x: hidden;
	padding-top: 250px;
}

.sidenav a {
	padding: 6px 8px 6px 16px;
	text-decoration: none;
	font-size: 30px;
	color: #FFFFFF
}

.sidenav a:hover {
	color: #ECFF6B ;
}

.main {
	margin-left: 160px;
	padding:0 px 10px;
}

@media creen and (max-height: 450px) {
	.sidenav {padding-top: 15px;}
	.sidenav a {font-size: 18px;}
}

/*Forms formatting - w3Schools.com*/
input[type=text], select {
    width: 60%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.button {
	background-color: #3A1F5C;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: center;
    font-size: 16px;
    margin: 300px 560px;
    cursor: pointer;
}
/*Accordion boxes - w3Schools.com*/
.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
	width: 84%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.6s;
	margin-left: 200px;
}

.active, .accordion:hover {
    background-color: #2F9CD7; 
}

.panel {
    padding: 0 18px;
    display: none;
    background-color: white;
    overflow: hidden;
}

/*Scroll Indicator - w3Schools.com*/
.header {
  position: fixed;
  top: 0;
  z-index: 1;
  width: 100%;
  background-color: #f1f1f1;
}

.progress-container {
  width: 100%;
  height: 8px;
  background: #ccc;
}

.progress-bar {
  height: 8px;
  background: #2F9CD7;
  width: 0%;
}

/*	Slideshow - from Stack Overflow	*/
#slideshow {
  position: absolute;
  height: 50%;
  overflow: hidden;
  margin: 70px center;
  padding-left: 260px;
  background: white;
  animation: mymove 5s infinite;
  display: inline-block;
}

@keyframes mymove {
  from {
    left: 0px;
  }
  to {
    left: -40%;
  }
}

#slideshow img {
  height: 50%;
  display: inline-block;
}

.footer {
   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   background-color: white;
   color: black;
   text-align: center;
}