/* Image formatting */
.avatar {
    border-radius: 50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.portfolio {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.hero-image {
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3)), url("https://github.com/kylefeffer/web-portfolio/blob/master/assets/Nova_totius_Terrarum_Orbis_geographica_ac_hydrographica_tabula_(Hendrik_Hondius).jpg?raw=true");
  height: 95vh;
  min-height: 150px;
  max-height: inherit;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  animation-name: fadeIn;
  animation-duration: 4s;

}

@keyframes fadeIn{
  from {opacity: 0.1;}
  to {opacity: 1.0;}
}

.hero-image-banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3)), url("https://github.com/kylefeffer/web-portfolio/blob/master/assets/banner.jpg?raw=true");
  height: 30vh;
  min-height: 150px;
  max-height: inherit;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

.fade {
  opacity: 1;
}

.fadeout{
  opacity: 0;
}

.collapsible {
    background-color: #2E8B57;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
}

.collapsible:after {
  content: '\002B';
  color: white;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active, .collapsible:hover {
    background-color: #343A40;
}

.active:after {
  content: "\2212";
}

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



.fa:hover {
    opacity: 0.7;
}

.fa-facebook {
  background: #3B5998;
  color: white;
  padding: 15px;
  font-size: 30px;
  width: 65px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
}

.fa-twitter {
  background: #55ACEE;
  color: white;
  padding: 15px;
  font-size: 30px;
  width: 65px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
}

.fa-linkedin {
  background: #0076A8;
  color: white;
  padding: 15px;
  font-size: 30px;
  width: 65px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
}

.fa-github {
  background: #333;
  color: white;
  padding: 15px;
  font-size: 30px;
  width: 65px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
}

.button {
    background-color: #2E8B57;
    border: none;
    color: white;
    padding: 16px 16px;
    text-align: center;
    text-decoration: none;
    display:inline-block;
    font-size: 16px;
    margin-bottom: 0;
}

.button:hover {
    opacity: 0.7;
}

.button-sm {
    background-color: #bbb;
    border: none;
    color: white;
    padding: 10px 10px;
    text-align: center;
    text-decoration: none;
    display:inline-block;
    font-size: 10px;
    margin-bottom: 0;
}

.button-sm:hover {
    opacity: 0.7;
}

.center {
    text-align: center;
    align-content: center;
}

.topnav {
    overflow: hidden;
    background-color: #333;
}

.topnav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

.topnav a:hover {
    background-color: #ddd;
    color: black;
}

.topnav a.active {
    background-color: #2E8B57;
    color: white;
}


h1 {
	color:white;
    text-shadow: 0.1em 0.1em 0.1em black;
	font-size: 45px;
    padding-left: 16px;
}

h2 {
	color: #000000;
	font-size: 35px;	
}

h3 {
	color: #000000;
	font-size: 25px;	
}

h4 {
	color: #000000;
	font-size: 20px;	
}
h5 {
	color: #000000;
	font-size: 15px;	
}
h6 {
	color: #000000;
	font-size: 12px;	
}


body {

    background-color: white;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    width: auto;
}

p {
	color: darkslategrey;
	font-size: 12px;	
}
