/*@charset "UTF-8";*/
* {
    box-sizing: border-box;
}

/*id selectors*/
#columnHolder{
    display:flex;
    flex-direction:row;
}
#container {
  box-sizing: border-box;
  height: 750px;
  width: 90%;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: auto; 
  margin-right: auto; 
  border: solid 5px black;
  padding: 10px;
 /* background-color: beige;
  background-image: url(../images_and_videos/stingray_background_2_copy.JPG);
  background-position: center;
  background-repeat: no-repeat;
  background-size:cover;*/
  border-radius: 10px;
  line-height: 2em;
  font-size: large;
  font-family: Arial, Helvetica, sans-serif;
  /*color: black;*/
  overflow-y: auto;
}
/*element selectors*/
article {
    flex-basis:100%;
    border: solid black 1px;
  }
article:nth-child(4){
  border-right:none;
}
/*section, article, aside, footer, header {
    padding: 0.5rem;
}*/
img, video, embed {
    max-width: 100%;
}

p {font-family: 'Cabin', sans-serif;
}
/*main {width: 1200px;
  color: black;
}*/
html { background-image: url(../images_and_videos/stingray_background_2_copy.JPG);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
div {display:inline-block;
}
ol {font-size: x-large;
  font: bold;
}
header {box-shadow: 5px 5px rgba(0, 0, 0, 0.6);
  border: solid black 1px;
  background-color: rgba(190, 190, 190, 0.49);
  color: black;
  height: 175px;
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
}
footer {box-shadow: 5px 5px rgba(0, 0, 0, 0.6);
  background-color:rgba(190, 190, 190, 0.49);
  border: solid black 1px;
  color: black;
  margin-top: 10px;
  margin-bottom: 15px;
  /*padding-top: 10px;
  padding-bottom: 10px;*/
  text-align: center;
}
img, video, embed {
   max-width:100%;

}
/* padding: 10px 0;
}*/
nav {display: flex;
   flex-direction: column;
   margin-bottom: .25px;
   background: rgba(190, 190, 190, 0.71);
}
/*descendant selectors*/
nav a {flex: auto;
  padding: .5rem;
  text-align: center;
  text-decoration: none;
  color: black;
}
nav a:hover {outline: 1px solid #ea8306;
  color: #ea8306;
  text-decoration: underline;
}
nav ul {list-style-type: none;
}
ul{font-family: 'Blinker', sans-serif; 
  display: flex;
  flex-direction: row;
  margin:0;
  padding:0;
}
ul li{flex: auto;
  list-style-type:none;
  border:solid black 1px;
}
ul li:nth-child(1){
  border:solid black 1px;
}
ul li a {font-family: 'Blinker', sans-serif;
  display: flex;
  flex: auto;
  text-align:center;
  text-decoration: none;
  justify-content: center;
  font-size: 1.2rem;
  color: black; 
  padding:15px;
}
/*classes*/
.img_padding {padding: 10px;
}
.cabin_font {font-family: 'Cabin', sans-serif;
}
.elite_font {font-family: 'Special Elite', serif;
}
.quick_font {font-family: 'Quicksilver', sans-serif;
}
.baskervville_font {font-family: 'Baskervville', serif;
}
.parent{display:flex;
}
.container{width: 90%;
  margin-left: auto;
  margin-right: auto;
  border: solid black 5px;
  border-radius: 10px;
}
/*.center_header_text {text-align: center;
  margin: 100px;
  padding: 10px;
}*/
.center {margin: auto;
  padding: 10px;
}
.center_text_1 {margin: 75px;
  width: 75%;
  padding: 5px;
}
.center_text_2 {margin: auto;
  width: 50%;
  padding: 5px;
}
.center_header_text {text-align: center;
  margin: 50px 50px 50px 50px;
  padding: 10px;
}
.inline_block {display: inline-block;
}
.image_border_1{border: solid black 2px;
border-radius: 5px;    
width: 18%;
}
.float_right {float: right;
    padding: 10px;
}
.float_left {float: left;
    padding: 10px;
}
.logo_float_right {float: right;
  margin: -25px 25px 0 0;
}
body {
    width: 98%;
    margin: auto;
}
section, article, aside, footer, header {
    padding: 0.5rem;
}
img, video, embed {
    max-width: 98%;
}

/* medium screen */
/*@media screen and (min-width: 768px) {
    body {
        display: flex;
        flex-direction: column;
        max-width: 75rem;
    }
    main {
        display: flex;
        flex-wrap: wrap;
    }
    nav, header {
        order: -1;
    }
    nav {
        flex-direction: row;
    }
    nav a {
        flex: auto;
    }
    article {
        flex: 50%;
    }
    aside, section {
        flex: 100%;
    }
    section p {
        column-count: 2;
        column-gap: 20px;
        column-rule: 1px solid rgb(255, 105, 0);
}*/

/* large screen */
/*@media screen and (min-width: 1200px) {
    article {
        flex: 35%;
    }
    aside {
        flex: 30%;
    }
}




