/* X-Small devices (portrait phones, less than 576px)
// No media query for `xs` since this is the default in Bootstrap*/

/* Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) { 
    p.copyright  {
        font-size: 1.3rem;        
    }    
 }

/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) { 
    p.copyright  {
        font-size:1.3rem ;       
    }    
  }
 

/* Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
    p.copyright  {
        font-size: 1.4rem;
       
    }
}

/* X-Large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
    p.copyright  {
        font-size: 1.8rem;       
    }
}

/* XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1400px) { 
    p.copyright  {
        font-size: 1.8rem;        
    }
}

.navbar-toggler {
    width: 20px;
    height: 20px;
    position: relative;
    transform: .5s ease-in-out;
    
}

.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
    border: 0;
}

.navbar-toggler span {
    margin: 0;
    padding: 0;
}

.toggler-icon {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: rgb(144, 143, 143);
    border-radius: 1px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
    
}

.middle-bar {
    margin-top: 0px;
}

/* when navigation is clicked */
.navbar-toggler .top-bar {
    margin-top: 0px;
    transform: rotate(135deg);
}

.navbar-toggler .middle-bar {
    opacity: 0;
    filter: alpha(opacity=0);
}

.navbar-toggler .bottom-bar {
    margin-top: 0px;
    transform: rotate(-135deg);
}
/* state when the navbar is collapsed */
.navbar-toggler.collapsed .top-bar {
    margin-top: -20px;
    transform: rotate(0deg);
}

.navbar-toggler.collapsed .middle-bar {
    opacity: 1;
    filter:alph(opacity=100);
}

.navbar-toggler.collapsed .bottom-bar {
    margin-top: 20px;
    transform: rotate(0deg);
    
}

/* css gradient.io */

.navbar-toggler {
    border-style: dotted;
    background-color: white;
}

.masthead {
    background-size: cover;
    background-repeat: no-repeat;  
    min-height: 70vh;
    width: 100%;
    position: relative;  
    text-shadow: 18px 18px 18px rgba(0,0,0,.2);

}

.color-overlay {
    background-color: rgba(128,0,128,0.1);
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
}
.about {
    background-color: rgba(255,255,255,0.1);
}



























