@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@300;600&family=Montserrat+Alternates:wght@500&family=Nunito:wght@500&family=Rajdhani:wght@500&family=Roboto:wght@300;500&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body
{
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 17px;
}

.container{
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-bar{
  padding-left: 8rem;
  padding-right: 2rem;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

.company-logo a img {
max-width: 100px; 
height: auto; 
cursor: pointer;
}

.aboutus-content{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 700px;
  padding: 10px 2rem;
  line-height: 2.5rem;
  text-align: center;
}

.aboutus-content li{
  list-style: none;
}

.aboutus-content h2{
  margin-bottom: 10px;
}

@media (min-width:300px) and (max-width:900px) {
  .aboutus-content{
    justify-content: start;
    align-items: start;
    text-align: start;
  }

  
.nav-bar{
  padding-left: 1rem;
}

}

