/* IF WE FIND A GOOD BACKGROUND VIDEO TO USE, THIS ID WILL MAKE IT BE THE BACKGROUND.
#background-video{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
*/
.navbarStyle {
    background-image: radial-gradient(circle at top left, #f6c90e 0%, #f8d85c 40%, #0d0d0d 100%);
    width: 100%;
    display: flex;
    font-size: large;
}
/* These card styles affect both the cards in Our Team and our Home page.*/
.card {
    transition: all 0.3s;
}
.card img {
    width: 100%;
    object-fit: cover;
}
.card:hover {
    transform: scale(1.15);
}
.mentorStyle {
    margin-top: 4rem; /*if you add more to our information, may need to add here.*/
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Team section deals with the div surrounding all information in Home, team row is for the cards.*/
.team-section{
    text-align: center;
    padding: 2rem 10rem;
}

.team-row{
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.title_name{
    font-size: 50px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.projectInfo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5rem;
}

.firstInfo{
    display: flex;
    width: 45%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: larger;
    padding: 2rem;
}


/* Supports the list of documents on documents page.*/
.documents-holder{
  text-align: center;
  margin: 20px auto;
  padding: 20px;
  border-radius: 8px;
  max-width: 600px;
}

.article-cl{
    padding: 2rem;
}

/* add this class to any html elements you want to hold this background.*/
.background-style-default{
    background-color: #FFFFC5;
}

/* removes bullet points, if you want to add them back for something else be wary of what you are changing */
ul {
  list-style-type: none;
}