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

a{
  text-decoration: none;
}

ul {
  list-style: none;
}

.header {
  width: 100%;
  height: 60vh;
  background-color: #fff;
  position: relative;
} 

.header .navbar {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  margin-top: 30px;
}

.logo img{
  margin-left: 60px;
  height: 100px;
}

.menu ul li { 
  display: inline-block;
  padding: 0 30px;
  cursor: pointer;
  font-size: 19px;
  align-items: center;
}

.login-btn { 
  display: block;
  font-size: 19px;
  cursor: pointer;
  border-radius: 30px;
  background-color: orange;
  padding: 8px 40px;
  margin-right: 60px;
}

.banner {
  width: 100%;
  padding-right: 5%;
  padding-left: 5%;
  height: 70%;
  position: absolute;
  top: 25%;
  color: #fff;
  display: flex;
  justify-content: space-around;
}

.image img{
  width: 80%;
  margin-left: 10%;
  margin-top: 10%;
}

.app-text {
  width: 50%;
}

.app-text h3{
  margin-top: 100px;
  font-size: 17px;
  color: #000;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.app-text h1 {
  font-size: 51px;
  position: relative;
  color: #000;
  margin-top: 20px;
}

.app-text p{
  font-size: 19px;
  letter-spacing: 1px;
  color: #000;
  padding-right: 250px;
  margin-top: 15px;
}