* {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

.banner {
  width: 100%;
  height: 100vh;
  background-image: url('/img/wallpaper-2.png');
  background-size: cover;
  background-position: center;
}

.navbar {
  width: 90%;
  margin: auto;
  padding: 35px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 120px;
  cursor: pointer;
}

.navbar ul li {
  list-style: none;
  display: inline-block;
  margin: 0 20px;
  position: relative;
}

.navbar ul li a {
  text-decoration: none; 
  color: #000;
  text-transform: uppercase;
  font-weight: 700;
}

.navbar ul li::after {
  content: '';
  height: 2px;
  width: 0%;
  background: #000;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: .3s;
}

.navbar ul li:hover::after {
  width: 100%;
}

.content {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  color: #000;
}

.content h1 {
  font-size: 55px;
}

.content span {
  font-weight: 800;
}

button {
  width: 200px;
  padding: 15px 0;
  text-align: center;
  margin: 20px 10px;
  border-radius: 25px;
  font-weight: 600;
  border: 2px solid #000;
  background: transparent;
  color: #000;
  text-transform: uppercase;
  cursor: pointer;
  transition: .5s box-shadow;
}

button.primary {
  background: #000;
  color: #fff;
}

button:hover {
  box-shadow: -1px 5px 56px -20px rgba(0,0,0,1);
}

.project {
  margin-bottom: 40px;
}

.projects img {
  border-radius: 25px;
}

.projects {
  margin-top: 80px;
}

.projects h1 {
  font-size: 55px;
  margin-top: -15px;
}

.txt {
  padding: 30px 0;
}

.projects span {
  font-weight: 800;
}

.right {
  text-align: right;
}

.left {
  text-align: left;
}