/*
 * Globals
 */

 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom default button */
.btn-light,
.btn-light:hover,
.btn-light:focus {
  color: #333;
  text-shadow: none; /* Prevent inheritance from `body` */
}


/*
 * Base structure
 */

body {
  text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
  box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
}

/*
 * Header
 */

/* BANNER WRAP SECTION */
.banner-wrap {
    background-image: url("https://github.com/rkmoropane/rkmoropane.github.io/blob/main/images/pexels-sora-shimazaki-5926397.jpg?raw=true");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    
    height: 100vh;       /* ⭐ Makes it fill the whole visible screen */
    width: 100%;
    position: relative;
    z-index: 1; /*The banner-wrap must appear on top of overlay.*/
}

.overlay {
    z-index: -1; /* Overlay: We need to send it back with negative one so that it doesnot appear on top*/
    height: 100%;
    width: 100%;
    background: black;
    position: absolute; /* This value has disrupted the element flow, it has appeared on top of the banner-wrap. */
    top: 0;
    opacity: 40%;
}

#names {
  color: #ff0059;
}

#typed {
  color: #ff8800;
}

.nav-masthead .nav-link {
  color: rgba(255, 255, 255, .5);
  border-bottom: .25rem solid transparent;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
  border-bottom-color: rgba(255, 255, 255, .25);
}

.nav-masthead .nav-link + .nav-link {
  margin-left: 1rem;
}

.nav-masthead .active {
  color: #fff;
  border-bottom-color: #fff;
}

.scrolling {
  background: black;
  opacity: 90%;
  transition: all 0.5s;
}
