@charset "UTF-8";
/* CSS Document used for Web Project 2
Author: Ashley Crawford
Course: ITWP 1000
File: project2.css*/

header, main{
    width: 100%;
}
h1{
    text-align: center;
    font-size: 45px;
    font-family: "Trebuchet MS", Arial, sans-serif;
    color: #0e0e50; /* dark blue */
    margin-top: 5px; 
    margin-bottom: 5px;    
}

p{
    text-align: center;
    font-size: 16px;
    font-family: "Trebuchet MS", Arial, sans-serif;
    color: #000000; /* black */
}

h2{
    text-align: center;
    font-size:20px;
    font-style: italic; 
    font-family: "Trebuchet MS", Arial, sans-serif;
    color: #12125fd2; /* medium blue */   
}


h3{
    text-align: center;
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: 12px;
}

caption{
    text-align: center;
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
}

h5{
    text-align: center;
    font-size: 25px;
    font-family: "Trebuchet MS", Arial, sans-serif;
    color: #0e0e50; /* dark blue */
    margin-top: 5px; 
    margin-bottom: 5px;
    padding-top: 5px;    
}


.button{
    display: block;
    height: 25px;
    width: 180px;
    background: #b6bdee;
    border: 2px solid #0e0e50;
    color: black;
    text-align: center;
    font: bold 20px "Trebuchet MS", Arial, sans-serif;
}
    
table{
    margin: auto;
}   
  
#player {
    display: block;
    margin: auto;
    border: 3px solid #333;
    padding: 10px;
}


img.responsive {
    max-width: 100%;
    height: auto;
    border: 1px solid #51471A;
    border-radius: 10px;
}

.education{
    text-align: center;
    font-size:12px;
    font-family: "Trebuchet MS", Arial, sans-serif;;
    font-style: italic; 
    color: #2123c2; /* cool blue */ 
}
    
footer{
    border-top: 1px solid #000;
    width: 100%;
    text-align:center;
    margin-top: 10px;
}

.space{
    margin-bottom: 20px;
}


figure{
    display: table; 
    margin: auto;
    padding-top:8px;
}

figcaption{
    display: table-caption;
    caption-side: top;   
    border: #0e0e50;
    background-color: rgb(133, 174, 235);
    color: rgb(0, 0, 0);
    font-style: italic;
    margin-top: 5px;
    margin-bottom: 2px;
    text-align: center;
    width: 500px;
}

nav{
    padding: 10px;
    border-bottom: 1 px solid #000;
    width: 100%
}


@media only all and (max-width: 550px) {
    img{
        display: none;
    }
}

/* JQuery Plugin https://www.w3schools.com/howto/howto_js_slideshow_gallery.asp-->
* {
  box-sizing: border-box;
}

/* Position the image container (needed to position the left and right arrows) */
.container {
  position: relative;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Container for image text */
.caption-container {
  text-align: center;
  background-color: rgb(148, 146, 146);
  padding: 2px 16px;
  color: white;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.column {
  float: left;
  width: 16.66%;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}
