* {
  font-family: "Centaur", serif;
  font-optical-sizing: auto;
}

body{
  background-image: url(https://s3.us-east-1.amazonaws.com/faubion.com/Images/43589.JPEG);
  margin-left: 0;
  margin-right: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center bottom;

  /*background-color: 	#F0F8FF;*/
}

html {
  scroll-behavior: smooth;
}

.title{
  text-align: center;
  font-weight: 400;
  font-size: 400%;
  margin-top: 8vh;
  margin-left: 1%;
  color: black;
}
.paragraph{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: 65vw;
  margin-top: 5%;
  color: black;
}
.paragraph_left{
  text-align: left;
  margin-left: 5vw;
  color: black;
}
.tab{
  margin-left: 7vw;
}
.minor_paragraph{
  text-align: center;
  margin-left: 5vw;
  width: 65vw;
  color: #262626;
}

.title_paragraph{
  text-align: center;
  margin: auto;
  padding-top: 5vh;
  padding-bottom: 5vh;
  width: 65vw;
  color: #262626;
}


.paragraph_title{
  text-align: center;
  margin: auto;
  padding-top: 5vh;
  width: 65vw;
  color: #262626;
}

.list_text {
  width: 55vw;
}

/* Class for centering images*/
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  margin-top: 2%;
  padding-top: 8vh;
  text-align: center;
}
/* Class for centering images that are smaller */
.minor_center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 25%;
  margin-top: 2%;
  text-align: center;
}

/* Styles the resume page to have the white background to make the text more readable. */
.background_mask {
  background-color: rgba(240, 246, 253, 0.6);
  /* Center it */
  display: block;
  width: 75vw;
  margin: 8vh auto;
  border-radius: 10px; /* Round the corners */
}

.inline_hyperlink{
  display: inline;
  color: #0077e6;
  text-align: match-parent;
  text-decoration: none;
}
.inline_hyperlink:hover{
  display: inline;
  color: #033d8d;
  text-decoration: underline;
  text-align: match-parent;
}



/**           NAV BAR           */


/* W3Schools nav bar idea*/
.top_list {
  z-index: 10000;
  list-style-type: none;
  position: sticky;
  top: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color:  #00284d;
}
/* Makes the "list" in the nav bar left justified */
.top_list_item {
  float: left;
  font-size: 90%;
}
.top_list_right {
  float: right;
  font-size: 90%;
}
/* styles the nav bar */
.nav_a {
  display: block;
  color: #b3daff;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change the color of nav on hover*/
.nav_a:hover {
  background-color:#0077e6;
}

/* Makes the active tab on the nav bar a lighter col */
.nav_a:active {
  background-color: #004280;
}

.hyperlink{
  display: inline;
  color: #0077e6;
  text-align: match-parent;
}
.hyperlink:hover{
  display: inline;
  color: #002dcd;
  text-align: match-parent;
}


/* Makes the horizontal rule bigger and makes the page have a more professional and divided feel*/
.line {
  border-top: 8px solid #003566;
  width: 60vw;
}

#footer {
  text-align: center;
  padding: 5px;
  background-color:  #003566;
  color: #b3daff;
}




/**             Alert box Style             */


/* The alert box that the page is in development still */
.alert {
  /* To change alert to display above instead of over content,
  change position to relative, then comment out beneath until next comment.
   */
  position: absolute;
  z-index: 9999;
  left: 50%;
  transform: translate(-50%);
  /* Comment above three to change to relative position */
  width: 500px;
  padding: 15px;
  background-color: #FFFFCC;
  color: black;
  opacity: 1;
  transition: opacity 0.6s; /* 600ms to fade out */
  margin: auto auto 5px;
  text-align: center;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2); /* Subtle shadow */
  border-radius: 8px; /* Round the corners */
}

/* The Close button styling */
.closebtn {
  margin-left: 15px;
  color: grey;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.closebtn:hover {
  color: #0f294c;
}




/**                  Slideshow Stuff                   */



* {
  box-sizing: border-box;
}

.mySlides {
  display: flex;
}

/* Slideshow container */
.slideshow-container {
  /*width: 100vw;  !* Full viewport width *!*/
  /*max-height: 75vh;  !* % of the viewport height *!*/
  /*overflow: hidden;*/
  /*position: relative;*/


  height: 40vw;
  width: 75vw;
  position: relative;
  overflow: hidden;
  margin: auto;
}

.slideImg {
  width: 75vw;
  max-width: 1000px;
  height:100%;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  display: block;
  margin: auto;


  /*width:100vw;*/
  /*height:100%;*/
  /*object-fit: cover;*/
}

.doubleSlideImg {
  width: 49.6%;
  object-fit: cover;
}


/* Caption text */
.text {
  color: #fdfdfd;
  background-color: rgba(3, 69, 162, 0.87);
  font-size: 15px;
  padding: 8px 8px;
  position: absolute;
  bottom: 8px;
  width: 150px;
  text-align: center;
  left: 50%;
  transform: translate(-50%);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2); /* Subtle shadow */
  border-radius: 10px; /* Round the corners */
}


/* The dot navigation */
.dot-container {
  text-align: center;
  margin: 2px;
}
/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #033d8d;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 2.3s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}

