*{
    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%;
}

/* about us page text box */
.about-info{
    /* width: 90%;
    color: #EBE3CF;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center; */
    margin-bottom: 40px;
    background-color: #fff;
}
.about-info h1{
    /* font-size: 62px; */
    font-size: 2em;
    margin-bottom: 10px;
}
.about-info p{
    /* margin: 10px 0 40px;
    font-size: 20px;
    color: #EBE3CF; */
    font-size: 1.2em;
    line-height: 1.5;
}

/* team section  */
.team-section{
    /* width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden; */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #fff;
}
.team-section h2{
    text-align: center;
    padding-left: 50px;
}
.team-member{
    padding-top: 50px;
    margin: 10px;
    width: calc(41%); /*  based on # of desired columns */
    text-align: center;
}
.team-member img{
    border-radius: 5%;
    width: 350px;
    height: 450px;
    margin-bottom: 10px;
}
.team-member h3{
    font-size: 1.4em;
    margin-bottom: 5px;
}
.team-member p{
    font-size: 1em;
    line-height: 1.3;
}

/* values */
.values{
    margin-bottom: 40px;
    background-color: #fff;
}
.values h2 {
    font-size: 1.6em;
    margin-bottom: 10px;
}
.values ul {
    list-style: none;
    padding: 0;
}
.values li {
    margin-bottom: 10px;
    font-size: 1em;
}

/* Timeline section */
.timeline {
    margin-bottom: 40px;
    background-color: #fff;
}

.timeline h2 {
    font-size: 1.6em;
    margin-bottom: 10px;
}

.timeline ul {
    list-style: none;
    padding: 0;
}

.timeline li {
    margin-bottom: 10px;
    font-size: 1em;
    display: flex;
    align-items: center;
}

/* Replace 'year' with a bullet point symbol? */
.timeline li::before {
    content: "•";
    color: #ccc;
    margin-right: 10px;
}