* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background: linen;
}

ul {
  list-style-type: none;
}

.container {
  max-width: 5000px;
  margin: 0 auto;
  padding: 0 30px;
}

.main {
  color: darkblue;
  line-height: 2.5;
}

.title {
  text-align: center;
  font-size: 100px;
  color: black;
}

.team {
  max-width: 1920px;
  margin: 200px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  color: black;
}
.navbar {
  background-color: black;
  color: #fff;
  height: 60px;
}

.navbar .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.navbar ul {
  display: flex;
  flex-direction: row;
}

.navbar ul li {
  margin-left: 20px;
}

.navbar .logo {
  font-size: x-large;
  font-weight: bold;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
}

.navbar a:hover {
  border-bottom: 2px #fff solid;
  color: #ddd;
}

button {
  padding: 5px 10px;
  margin: 5px 10px;
  font-size: large;
  font-weight: bold;
  background-color: lightgrey;
  /* border-radius: 10px;
    border-width: 0px; */
}

button:hover {
  color: red;
  background-color: yellow;
}
