/* Styles for desktop screens */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .navbar a {
    font-size: 15px;
    color: #ededed;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
    transition: 0.3s;
  }
  
  /* Styles for mobile screens */
  @media (max-width: 768px) {
    .navbar {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .navbar a {
      margin: 10px 0;
    }
    .home .home-content h1{
        position: relative;
        font-size: 26px;
        font-weight: 500;
        line-height: 1.2;
    }
    .home .home-content h3{
        position: relative;
        font-size: 15px;
        font-weight: 400;
        color: #00abf0;
    }
    .home .home-content p{
        position: relative;
        font-size: 12px;
        margin: 20px 0 40px;
    }
    .home .home-content .btn-box a{
        display: flex;
        justify-content: space-between;
        font-size: small;
        width: 90px;
        height: 35px;
    }
    
  }
  
