/*!important indicates to override everything*/
/*css to keep for all html pages*/
body{
    font-family: 'Open Sans', sans-serif;
}

hr{
    margin-top: -10px;
}

.container{
    margin-top: 60px;
}

.navbar-nav{
    text-align: center;
}
.dropdown-menu{
    text-align: center;
    
}

h2{
    margin-top: 40px;
    margin-bottom: 30px;
    text-align: center;
    font-size: calc(1.5rem + 2vw);
    color:#99a4a8
}

.btn-primary, .btn-primary:active, .btn-primary:visited {
    background-color: #ddb7a0 !important;
    border-style: none !important;
}
.btn-primary:hover {
    background-color: #f0e3dd !important;
}


#SocialMedia{
    text-align: center;
    padding: 20px;
    opacity: 60%; 
    padding-top: 50px;
}
#copyright{
    text-align: center;
    font-size: 0.9em
}


/*rfs: responsive font sizing from bootstrap for home page*/
.title {
  font-size: calc(1.6rem + 3vw);
}
.subtitle {
  font-size: calc(.7rem + 1.5vw); 
    font-weight: 100;
}

/*Captions and hover for Portfolio Pages*/
h4{
    text-align: center;
}



a{
    color:black
}
a:link{
    text-decoration: none !important;
}

#PortfolioNav{
    text-decoration: underline;
}
a:hover{
    color: #ddb7a0 
    !important
}



.gallery:hover{
    opacity: 60%
}

/*.gallery .gallerytext {
    visibility: hidden;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 5px;
    
    width: 120px;
    bottom: auto100%left: 50%;
    margin-left: -60px;
    
    position: absolute;
    z-index: 1; }

.gallery:hover .gallerytext{visibility: visible}*/


/* Back to top Button */
#myBtn {
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 10px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: white;
    color: #ddb7a0; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 10px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px
}

#myBtn:hover {
  color: #f0e3dd; /* Add a dark-grey background on hover */
}