/* CSS Document */

.container-fluid {
    background-color:aliceblue;
}

h2 {
    font-family: 'Source Sans Pro', sans-serif;
    color: #99D0D8;
    font-weight: bold;
}

h4 {
    font-family: 'Source Sans Pro', sans-serif;
    color: #99D0D8;
}

/************************contact form***********************/
input[type=text], select {
  width: 100%;
  padding: 4px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 1px;
  margin-bottom: 6px;
  resize: vertical;
}

textarea {
  width: 100%;
  padding: 4px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 1px;
  margin-bottom: 6px;
  resize: vertical;
}

input[type=submit] {
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
}

label {
     font-family: 'Source Sans Pro', sans-serif;
}



#create-post {
    padding: 40px;
}

    #row_style {
        margin-top: 30px;
    }

    #submit {
        display: block;
        margin: auto;
    }

textarea {
    color: darkgray;
    outline-color: darkgray;
}

.btn-outline-light {
    background-color: #99D0D8;
}



.card-header {
    color: white;
    background-color: #99D0D8;
    height: 5px;
}

.fa-phone, .fa-envelope {
    color: #99D0D8;
}

p {
   font-family: 'Source Sans Pro', sans-serif;
}

#garnet {
    color: #99D0D8;
}

#garnet:hover {
    color:steelblue;
}

#contact-form, #contact-info {
    min-height: 490px;
}



#edit-blog-head {
   font-family: 'Source Sans Pro', sans-serif;
    color: #99D0D8;
    font-weight: bold;
}



/***************************login modal********************************/

/* Full-width input fields */
input[name=uname], input[type=password] {
width: 100%;
  padding: 4px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 1px;
  margin-bottom: 6px;
  resize: vertical;
  font-family: 'Source Sans Pro', sans-serif;
}



.btn-primary {
  background-color: #99D0D8;
  color: white;
  padding: 10px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  
}

.btn-primary:hover {
    background-color: white;
    color: #99D0D8;
}

.btn-primary:hover {
  opacity: 0.8;
}

/* Extra styles for the cancel button */
#cancel-btn {
  background-color: paleturquoise;
  color: white;
  width: auto;
  padding: 10px 18px;
}

#cancel-btn:hover {
  background-color: white;
  color: paleturquoise;
}

.btn-light {
  background-color: #99D0D8;
  color: azure;
  width: auto;
  padding: 10px 18px;
}

.btn-light:hover {
    background-color: white;
    color: #99D0D8;
}

/* Center the image and position the close button */
.imgcontainer {
  text-align: center;
  margin: 24px 0 12px 0;
  position: relative;
}

.container {
  padding: 16px;
}

span.psw {
  float: right;
  padding-top: 16px;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: #FFFFFF; /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  padding-top: 60px;
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
  border: 1px solid #888;
  width: 60%; /* Could be more or less, depending on screen size */
}


.close {
  position: absolute;
  right: 25px;
  top: 0;
  color: #99D0D8;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: lightblue;
  cursor: pointer;
}


/* Add Zoom Animation */
.animate {
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
  from {-webkit-transform: scale(0)} 
  to {-webkit-transform: scale(1)}
}
  
@keyframes animatezoom {
  from {transform: scale(0)} 
  to {transform: scale(1)}
}

/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 300px) {
  span.psw {
     display: block;
     float: none;
  }

