body {
  background: #a6caca;
  padding: 0 20px 20px 20px;
}

main .info {
  max-width: 50%;
}

navbar {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: 0 60px 0 20px;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 20px; 
}

.logo img {
  height: 190px;
  wdith: auto;
  border-radius: 50%;
  box-shadow: inset 0 0 10px #a6caca;
}

.links .pages, .links {
  display: flex;
  gap: 80px;
}

.links a {
  text-decoration: none;
  cursor: pointer;
  font-size: 26px;
  font-family: "Nunito Sans", sans-serif;
  color: black;
}

.links a i, .mobile-menu-button i, .mobile-menu-button {
  font-size: 30px;
  background: none;
  border: none;
}

.mobile-menu-button {
  display: none;
}

main {
  display: flex;
  justify-content: space-between;
  padding-left: 40px;
  padding-right: 40px;
  align-items: center;
}

main .man-working {
  border-radius: 100px;
}

main .info h1 {
  font-size: 40px;
  font-family: "Nunito Sans", sans-serif;
}

main .info button {
  padding: 20px 30px;
  border-radius: 50px;
  color: white;
  background: #009ea6;
  border: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
  background: #009ea6;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 10px 50px 50px;
  box-sizing: border-box;
  transition: .5s;
}

.mobile-menu-bar {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
  align-items: center;
}

.mobile-menu-bar h1 {
  font-size: 30px;
  color: white;
}

.mobile-menu-bar button {
  background: none;
  border: none;
  width: 100px;
  height: 100px;
}

.mobile-menu-bar button i {
  font-size: 30px;
  color: white;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.mobile-menu-links a {
  color: white;
  text-decoration: none !important;
  height: 50px;
  font-size: 26px;
}

@media (max-width: 1000px) {
  main .man-working {
    display: none;
  }
  main .info {
    max-width: 100% !important;
    width: 100% !important;
    transform: translateY(20px) !important;
    text-align: center !important;
  }
  .mobile-menu-button {
    display: block;
  }
  .links .pages {
    display: none;
  }
}

* {
  font-family: "Nunito Sans", sans-serif;
}