/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 14 May 2024, 10:47:51 PM
    Author     : Clare_S5
*/

main#about-mainPage {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  background-color: #f8f8f8;
  padding: 20px;
  text-align: center;
}
.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

header {
    background-color: #1F2937;
    color: #F9FAF8;
    padding: 10px 0;
}
.about-content {
  margin: 0 auto;
  max-width: 800px;
}

.about-content h1.about {
  background-color: #1F2937;
  color: #F9FAF8;
  text-align: center;
  padding: 10px 0;
}

.about-content article {
  margin-bottom: 40px;
}

.about-content h2 {
  margin-bottom: 10px;
}

.about-content p {
  margin-bottom: 15px;
}

.about-content ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 15px;
}

.about-content ul li {
  margin-bottom: 10px;
}

.team-members {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.team-member {
  text-align: center;
  margin: 0 10px 20px;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.team-member h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.team-member p {
  color: #666;
  font-size: 16px;
}

/* ========================================= */
  #back-to-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 1000;
    text-decoration: none;
  }
  
  #back-to-top-btn:hover {
    background-color: #555;
  }
  
  @media (max-width:576px){
      .navList {
    display: flex;
    flex-direction: column;
  }
  .navList li {
    display: block;
  }

  .navList li a {
    text-decoration: none;
    color: #f9faf8;
    padding: 12px;
    text-align: center;
    margin: 15px;
  }
  header {
    text-align: center;
    flex-direction: column;
  }

  header .container {
    justify-content: center;
  }
  }