body{
    background-color: rgb(100 90 90);
}

header{
    text-align: center;
    padding: 20px;
    background-color: black;
}

.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo{
    background-image: url('Screenshot_25-6-2025_145154_www.canva.com.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    justfy-content: left;
    border: 1px solid white;
    border-radius: 50%;
    width: 70px;
    height: 50px;
}

nav{
        justify-content: right;
        display: flex;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    
nav ul{
    list-style: none;
    display: flex;  
    justify-content: space-between;
    width: 450px;
    
}

nav a{
    text-decoration: none;
    font-size: 20px;
    color: white;
    transition: 0.3s;
}

nav a:hover{
    color: green;
    font-size: 25px;
    background-color: white;
    border-radius: 5px;
}

.Champion{
  background-image: url('Make a picture with an education program logo in the middle center for a programme named_ Help-Me-Understand. It is a programme for an organisation that helps high school learners with their studies.jpg'); /* Replace with your image path */
  background-size: cover; /* ensures the image covers the whole section */
  background-position: center;
  background-repeat: no-repeat;
  height: 75vh;
  color: white; 
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 25px;
    padding-bottom: 20px;
}

.get-started-bt{
  margin-top: 450px;
  background-color: rgb(193 159 159);
  font-size: 25px;
  border-radius: 15px;
  border: 1px solid black;
  cursor: pointer;
}

.get-started-bt:hover{
    color: rgb(155 125 125);
    background-color: #302a2a;
    font-size: 27px;
    border-radius: 5px;
    box-shadow: 8px 8px 20px rgb(57 59 17);
}

.executive{
    background-color: black;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 45vh;
    color: white;
    align-items: center;
    text-align: center;
    margin-top: 25px;
    marging-bottom: 25px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.director{
    background-image: url('474463311_1310599246737666_4215603494168993501_n.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid white;
    border-radius: 15px;
    height: 35vh;
    width: 20%;
    margin-left: 60%;
    box-shadow: 4px 4px 10px rgb(216 165 165);
}

.director p{
    margin-top: 245px;
}

.manager{
   background-image: url('130910471_2478543438956384_8080559932488551783_n.jpg');
   background-size: cover;
   background-repeat: no-repeat;
   background-position: center;
    border: 1px solid white;
    height: 35vh;
    width: 20%;
    margin-left: 20%;
    box-shadow: 4px 4px 10px rgb(216 165 165);
    border-radius: 15px;
    margin-top: -225px;
}

.manager p{
    margin-top: 245px;
}

.footer-1{
    text-align: left;
    background-color: darkgrey;
    color: #ecf0f1;
    position: relative;
    margin-bottom: 25px;
    margin-top: 25px;
    border-radius: 10px;
    padding-left: 35px;
   padding-right: 35px;
    font-size: 20px;
 }

.footer-1 .left-side {
    margin-left: 15px; /* Adjust value to move right */
}

.footer-2 {
    text-align: center;
    padding: 1rem;
    background-color: #7b8052;
    color: #ecf0f1;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer-2 .social-links {
    margin-top: 10px;
}

.footer-2 .social-links a {
    color: #ccc;
    margin: 0 10px;
    text-decoration: none;
    font-size: 1.5em;
    transition: color 0.3s ease;
}

.footer-2 .social-links a:hover {
    color: #fff;
}


@media (max-width: 600px) {
   nav { 
      justify-content: center;
   }
  nav ul {
    flex-direction: column;
    align-items: center;
  }
}


