*{
    padding: 0;
    margin: 0;
    font-family: 'Josefin Sans', sans-serif;
    box-sizing: border-box;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    font-size: 25px;
    color: #ededed;
    text-decoration: none;
    font-weight: 600;
}

.navbar a{
    font-size: 18px;
    color: #ededed;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
transition: .3s;
}

.navbar a:hover {
    color: #00abf0;
    
}

.main{
    width: 1130px;
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.about{
    width: 100%;
    padding: 78px 0px;
    background-color: #081b29;
}

.about img{
    height: auto;
    width: 420px;
}

.about-text{
    width: 550px;

}

.about-text h1{
    color: white;
    font-size: 80px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.about-text h5{
    color: white;
    font-size: 25px;
    text-transform: capitalize;
    margin-bottom: 25px;
    letter-spacing: 2px;
}
span{
    color: #f9004d;
}

.about-text p{
    color: #fcfc;
    letter-spacing: 1px;
    line-height: 28px;
    font-size: 18px;
    margin-bottom: 45px;
}

button{
    background: #f9004d;
    color: white;
    text-decoration: none;
    border: 2 px solid transparent;
    font-weight: bold;
    padding: 13px 30px;
    border-radius: 30px; 
    transform: .4s;
}

button:hover{
    background: transparent;
    border: 2px solid #f9004d;
    cursor: pointer ;
}


footer {
    background-color: #2c3e50; 
    color: #ecf0f1; 
    padding: 40px 0;
    font-family: 'Arial', sans-serif;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-section {
    flex: 1;
    min-width: 250px;
    padding: 10px;
    text-align: center;
  }
  
  .footer-section p {
    margin: 10px 0;
  }
  
  .footer-section strong {
    font-size: 1.2em;
  }
  
  .footer-section a {
    color: #ecf0f1;
    text-decoration: none;
  }
  
  .footer-section a:hover {
    color: #3498db; 
  }
  

  .social-media a {
    margin: 0 10px;
    font-size: 44px;
    display: block;
  }
  
 
  
  .social-media a i:hover {
    color: #3498db;
  }
  

