*{
    margin: 0;
    padding: 0;
    /* <uniquifier>: Use a uniquifier for the class name
       <weight>: Use a value from 100 to 900
       .montserrat-<uniquifier> { 
        font-optical-sizing: auto; */
    font-family: "Montserrat", sans-serif;

    /* font-weight: 300;  how thick the font is */
    /* font-style: normal; */
}
.header{
    min-height: 100vh;
    width: 100%;
    background-color: #231f20;
    background-position: center;
    background-size: cover;
    position: relative;
}

/* navigation bar at the top */
nav{
    display: flex;
    padding: 1% 2%; /* padding for the logo */
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 100px;
}
.nav-links{
    flex: 1; /* occupies all space in teh row */
    text-align: right;
    padding: 30px;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 15px;
    position: relative;
}
.nav-links ul li a{
    color: #EBE3CF;
    text-decoration: none;
    font-size: 13px;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #D7887F;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}

/* chatbot stuff */

.chat-container {
    width: 500px;
    margin: 0 auto;
    border: 1px solid #ccc;
    padding: 20px;
    background-color: #fff;
  }
  
.chat-history {
    height: 200px;
    overflow-y: scroll;
}
  
.p {
    margin-bottom: 10px;
}
  
.user-message {
    width: 80%;
    padding: 10px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
}
  