html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden /* Tries to fix white bar on mobile - doesnt work */
}

body {margin:0; 
     padding-right: 0 !important /* Stops modals froma */ }

a img:hover { /* Adds bright effect on hover for link images */
    filter: alpha(opacity=70);
    opacity: 0.7;
  cursor: pointer;
}

.loutcomes{
  padding-left: 100px; padding-right: 75px; padding-bottom: 25px;
}

.parallax1 { /*Allows for Parallax effect against image background
  /* The image used */
  background-image: url("Backgrounds/River.JPG");

  /* Set a specific height */
  min-height: 500px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax2 { /*Allows for Parallax effect against image background
  /* The image used */
  background-image: url("Backgrounds/cloudy.JPG");

  /* Set a specific height */
  min-height: 500px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax3 { /*Allows for Parallax effect against image background
  /* The image used */
  background-image: url("Backgrounds/Rocks.JPG");

  /* Set a specific height */
  min-height: 500px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax4 { /*Allows for Parallax effect against image background
  /* The image used */
  background-image: url("Backgrounds/Waterfalls.JPG");

  /* Set a specific height */
  min-height: 500px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.blankspace { /* Black Bars */
  background-color: #333;
  padding: 50px;
}

.greyspace { /* Grey Bars */
  background-color: #777E8C;
  padding: 50px;
}

.lightspace { /* "Light" Bars */
  background-color: #58709F;
  padding: 50px;
}

.black{
  background-color: #333;
}

.grey{
  background-color: #777E8C;
}

.light {
  background-color: #58709F;
}

[class*="col-"] { /* resizes everything beginning with col- */
  margin: auto;
  width: 100%;
  padding: 10px;
    font-size: 20px;
}

hr.solid {
    border-top: 2px solid #999;
}

hr.soliddark {
    border-top: 2px solid #333;
}

hr.hr-text {
  position: relative;
    border: none;
    height: 1px;
    background: #999;
}

hr.hr-text::before {
    content: attr(data-content);
    display: inline-block;
    background: #333;
    font-weight: bold;
    font-size: 0.85rem;
    color: #999;
    border-radius: 30rem;
    padding: 0.2rem 2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

hr.hr-textdark {
  position: relative;
    border: none;
    height: 1px;
    background: #333;
}

hr.hr-textdark::before {
    content: attr(data-content);
    display: inline-block;
    background: #777E8C;
    font-weight: bold;
    font-size: 0.85rem;
    color: #333;
    border-radius: 30rem;
    padding: 0.2rem 2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

hr.hr-textlight {
  position: relative;
    border: none;
    height: 1px;
    background: #CED2D9;
}

hr.hr-textlight::before {
    content: attr(data-content);
    display: inline-block;
    background: #58709F;
    font-weight: bold;
    font-size: 0.85rem;
    color: #CED2D9;
    border-radius: 30rem;
    padding: 0.2rem 2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.panel {
  background-color: whitesmoke;
    border: 4px solid #111111;
}

.panel p {
  padding: 50px;
  padding-bottom: 25px;
  padding-top: 25px;
}

.panel h1 {
  padding-top: 50px;
  padding-bottom: 25px;
}

.title {
  text-align: center;
}

.gallery {
    display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  min-width: 200px;
  max-width: 500px;
}

.indent{
  text-indent: 30px;
}

.navbar {
    background-color: #333;
}

.skillset{
   margin-left:15%;
}


#videoheader {
  color:#333;
  font-family:verdana;
}

#webdevheader {
  color:#CED2D9;
  font-family:verdana;
}

#graphicheader {
  color:#CED2D9;
  font-family:verdana;
}

#aboutmeimage {
  max-width: 300px;
}

#blackbackground{
  background-color: black;
}




@media screen and (max-width: 770px) {

  html{
    scroll-behavior: smooth; /* Scroll effect is very disorienting on mobile - might change back later*/
  }

[class*="parallax"] { /* Parallax doesn't work on mobile browsers (besides firefox) - parallax images appear weird there without this disabler*/
  background-attachment: scroll;

  width: 100%;
  }

hr.hr-textlight::before {
    content: attr(data-content);
    display: inline-block;
    background: #58709F;
    font-weight: bold;
    font-size: 0.55rem;
  text-align: center;
    color: #CED2D9;
    border-radius: 30rem;
    padding: 0.2rem 2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

hr.hr-textdark::before {
    content: attr(data-content);
    display: inline-block;
    background: #777E8C;
    font-weight: bold;
    font-size: 0.65rem;
  text-align: center;
    color: #333;
    border-radius: 30rem;
    padding: 0.2rem 2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

  hr.hr-text::before {
    content: attr(data-content);
    display: inline-block;
    background: #333;
    font-weight: bold;
    font-size: 0.65rem;
    color: #999;
    border-radius: 30rem;
    padding: 0.2rem 2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.nav-item{
  text-align: center;
}
  
#videoheader {
  text-align: center;
  text-size-adjust: auto;
  font-size: 10vw;
}

#webdevheader {
  text-align: center;
  text-size-adjust: auto;
  font-size: 10vw;
}
  
#graphicheader {
  text-align: center;
  text-size-adjust: auto;
  font-size: 10vw;
}

#beemovie {
  width: 75%;
  height: 75%;
  display: block;
    margin-left: auto;
    margin-right: auto
}

.nist-example {
  width: 75%;
  height: 75%;
  display: block;
    margin-left: auto;
    margin-right: auto
}

.nav-link{
  font-size:2.5vw;
  border-right: 1px solid #999999;
  padding-top: 50%;
}

.nooverflow { /*Prevents Web Dev and About Me from creating new lines on mobile*/
  overflow: hidden;
  white-space: nowrap;
}

.navbar{
  max-height: 50px;
}

#endlink{
  font-size:2.5vw;
  border-right: none;
}

.navbar-brand{
  position:absolute;
  display: none !important;
}


}