/*
Name: Sergio Laet
Final Project
Purpose: For the final project you will continue from Coding 09 with the same application you have
         been building
*/
/*********Bootstrap Overrides**********/
.navbar-dark .navbar-nav .nav-link {
    color: #fff;
}
.text-center{
    padding-top: 20px;
}

/*****************MINE*****************/
body{
    margin: 0;
    font-family: Roboto, Arial, sans-serif;
    background-color: #F4EAD5;
}
.navbar-custom {
    background-color: #ff851b;
}
.navbar-custom ul a:hover{
    background-color: #F29718; 
}
.contact-body{
    background: url(../images/bg.jpg) no-repeat fixed;
    background-size: cover;
}
hr{
    background: white;
}
.hr_style {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}
#google_logo{
    max-width: 60px;
}
.body_container{
    margin-top: 70px;
    width: 100%;
    display: inline-block;
    clear: both;
}
.main_img{
    width: 98%;
    padding: 8px 0px;
    display: block;
    margin: auto;
}
.main_text{
    text-align: justify;
    padding: 0px 10px;
}
.gallery_images{
    width: 100%;
    height: 90%;
    margin: 25px auto 25px auto;
}
#displayEmail{
    color: #F29718;
    text-decoration: none;
}
#displayEmail:focus{
    color: lightblue;
    text-decoration: none;
}
.transparent-box{
    background:rgba(0,0,0,0.5);
    color: #FFF;
    border-radius: 5px;
    margin-top: 30px;
    padding: 20px;
    box-shadow: 0px 0px 10px 3px grey;
}
.form-input{
    background: rgba(0,0,0,0.6);
    border-radius: 5px;
    border: none;
    outline: none;
    border-bottom: 2px solid #ff851b;
    color: #FFF;
}
.form-input:focus{
    background: rgba(0,0,0,0.6);
    color: #FFF;
    outline: none;
    box-shadow: 0px 0px 2px 2px #ff851b;
}
#button{
    text-align: center;
}
.button{
    width: 40%;
    background: #ff851b;
    border: none;
    border-radius: 25px;
}
.button:hover{
    background: #F29718;
}
#box_result{
    margin-top: 40px;
    margin-bottom: 30px;
    text-align: center;
    font-size: 20px;
}
.normal-text {
    font-weight: bold;
    color: #ff851b;
}
.error-text {
    color: red;
}
.footer-custom {
    color: #FFFFFF;
    background-color: #ff851b;
    margin-bottom: -16px;
    font-size: 13px;
}
.storieslink {
    padding: 5px;
}
.storieslink a {
    text-align: center;
    font-size: 20px;
    color: #F29718;
    text-decoration: none;
}
.storieslink:focus {
    color: lightblue;
    text-decoration: none;
}
#high1 a {
    color: red;
}
@media (min-width: 768px) {
    .main_img{
        float: left;
        width: 550px;
        padding: 8px 8px;
    }
}