@charset "UTF-8";
/*id selectors*/
#container {
  box-sizing: border-box;
  height: 500px;
  width: 750px;
  margin-top: 300px;
  margin-bottom: 300px;
  margin-left: auto; 
  margin-right: auto; 
  border: solid 4px 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*/
/*main {width: 1200px;
  color: black;
}*/
html, body {height: 100%;
}
div {display: inline-block;
}
/*descendant selectors*/
nav ul {list-style-type: none;
}
nav ul li a {font-family: 'Blinker', sans-serif;  
    text-transform:none;
    text-decoration: none;
   /* background-color: beige;*/
    color: black;
    line-height: 1.5;
}
/*classes*/
.center_text {text-align: center;
}