body {
  background-image: url('images/atmosphere-background-bright-clouds-19670.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-size: 100% 100%;
}

.navbar {
    background-color: #2c3e50;
}

/* Change color of dropdown links on hover */
.dropdown-menu a:hover {
/*
  background-color: #ddd;
  */
  font-weight: bolder;
}
/* Show the dropdown menu on hover */

.nav-item:hover .dropdown-menu {display: block;}
/* Change the background color of the dropdown button when the dropdown content is shown */

/*
.nav-item:hover .nav-link {background-color: #3e8e41;}
*/

.nav-item:hover .nav-link {
  font-weight: bolder;
  /*
  background-color: black;
  opacity: 0.5;
  */
}

.Charity-Projects {
  font-size: medium;
  color: brown;
}

.questions-QAs, .urllinks {
  font-size: medium;
  color: brown;
}

.questions-QAs:hover {
  font-weight: bolder;
}

.urllinks:hover {
  font-weight: bolder;
}
.navbar-brand {
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  color: red;
}

/* creates dividers between navbar items
#navbarSupportedContent > ul > li > a {
    border-right: 1px solid white;
}
#navbarSupportedContent > ul > li:last-child > a {
    border-right: 0;
}
*/

.jumbotron .container {
  margin-top: -50px;
  margin-bottom: -50px;
  position: relative;
}

#scrolledTable {
  overflow: auto;
}

#footer {
  text-align: center;
  width: 100%;
  background-color: blue;
  padding: 10px;
  color: white;
  margin-top: -10px; 
  margin-bottom: 10px;
}

img {
  width: 32%;
  float: center; 
  margin: 0.5%;
  border: 5px solid white;
  box-shadow: 0px 0px 8px rgba(0,0,0,.3);
}

img:hover {
  opacity: 0.7;
}

#special_p {
  font-family: Raleway;
  margin-left: 1.66%;
  font-size: 23px;
  font-weight: 800;
  text-transform: uppercase;
  border-bottom: 2px solid #F1F1F1;
  width: 30%;
  padding-bottom: 2px;
}

/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
  /*width: 100%; /* Full width */
  padding: 2px; /* Some padding */ 
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 2px; /* Add a top margin */
  margin-bottom: 2px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: #4CAF50;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: #45a049;
}

/* Add a background color and some padding around the form */
#contact-form {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}

#myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#myImg:hover {opacity: 0.7;}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: center; /* Stay in place */
  text-align: center;
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
  margin-left: auto;
  margin-right: auto;
  display: block;
  text-align: center;
  width: 80%;
}

/* Caption of Modal Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation */
.modal-content, #caption {  
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {-webkit-transform:scale(0)} 
  to {-webkit-transform:scale(1)}
}

@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
}

.center {
  display: block;
  margin-top: -3%;
  margin-bottom: 2%;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}

.column {
  float: left;
  width: 50%;
  padding: 10px;
  text-align: center;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}