header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background: rgba(73, 186, 103, 0.5);
}
/* i want the size for logo of my company stay fixed no matter how people
      scale the window, how wide their screen are */

.logoContainer {
  width: 20vw;
  height: auto;
}

.companylogo {
  height: 180px;
  display: block;
}

nav {
  width: 40vw;
  display: flex;
  justify-content: center;
}

.contactmeans {
  width: 20vw;
}

.navigationbar,
.listOfContactMeans {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  padding-left: 0;
}

.listOfContactMeans {
  justify-content: flex-end;
}

.navigationbutton,
.contactbutton {
  margin: 10px;
}

a {
  color: black;
  text-decoration: none;
}

.link {
  font-size: larger;
}

@media (max-width: 700px) {
  header {
    flex-direction: column;
    align-items: center;
  }

  .logoContainer {
    width: 100%;
    height: 140px;
    display: flex;
    justify-content: center;
  }

  .companylogo {
    height: auto;
    display: block;
    object-fit: cover;
    width: 100%;
    object-position: 50% 47%;
  }

  .navigationbar {
    flex-direction: column;
  }

  .contactmeans {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .listOfContactMeans {
    justify-content: center;
  }
}
