body{
    background-color: whitesmoke;
}


.navbar {
    padding-top: 0px;
    padding-bottom: 0px;
    font-family: 'Lucida Handwriting' serif;
    font-size: 1.0rem;
    font-weight: 100;
    top: 40px;
    position: relative;
}

.navbar-brand {
    font-family: 'Lucida Handwriting';
    font-size: 1.5rem;
}

.navbar-toggler{
    padding: 0.5px 3px;
    background-color: whitesmoke;
   }

  /* Chat Feature */
  body {
    box-sizing: border-box;
}

/* Button used to open the chat form - fixed at the bottom of the page */
.open-button {
  background-color: rosybrown;
  color: #DCDCDC;
  padding: 0px 0px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  opacity: 0.9;
  position: fixed;
  bottom: 23px;
  left: 28px;
  width: 80px;
}

/* The popup chat - hidden by default */
.chat-popup {
  display: none;
  position: fixed;
  bottom: 10px;
  right: 0px;
  border: 3px;
  z-index: 2;
}

/* Add styles to the form container */
.form-container {
  max-width: 255px;
  padding: 10px;
  background-color: rosybrown;
  border-radius: 10px;
}

/* Full-width textarea */
.form-container textarea {
  width: 100%;
  padding: 10px;
  margin: 5px 0 22px 0;
  border: none;
  background: #DCDCDC	;
  font-family: 'Lucida Handwriting';
  border-radius: 15px;;
  resize: none;
  min-height: 200px;
}

/* When the textarea gets focus, do something */
.form-container textarea:focus {
  background-color: #DCDCDC;
  outline: none;
}

/* Set a style for the submit/send button */
.form-container .btn {
  background-color: grey;
  color: white;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom:10px;
  opacity: 0.8;
}

/* Add a red background color to the cancel button */
.form-container .cancel {
  background-color: #181818;
}

/* Add some hover effects to buttons */
.form-container .btn:hover, .open-button:hover {
  opacity: 1;
}

.chat-heading {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: whitesmoke;
}

.about-p{
position: relative;
top: 75px;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
font-size: 1.2rem;
text-align: center;
}



img {
position: relative;
top: 100px;

}

