* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background-color: #f3f3f4;
}

.container {
  width: 100wh;
  height: 100vh;

}
/* navbar section */

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 60px;
  background-color: #ffffff;
}

/* instead of written Logo i used a logo image from internet */

.navbar .logo img {
  width: 70px;
  height: 70px;
  margin-top: 10px;
  border-radius: 50%;
}

.nav a {
  text-decoration: none;
  font-size: 24px;
  margin-right: 40px;
  color: #a3a3a3;
}

.username {
  color: #38bbff;
  background-color: #d4effd;
  padding: 16px 20px;
  border-radius: 15px;
}

/* before that i was used grid to divide the div but now i will use flex to div the div. */

/* Hero Section */

.hero{
  display:flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
  max-width: 90%;
  gap: 50px;
  padding: 5vh 10vh;
  margin: auto;
   
}
.left-div{
  flex: 1;
  margin: 0px 24px;
  /* margin-right: 200px; */
}
#heading{
  color: #4a5a66;
  font-size: 3rem;
  line-height: 1.4;
  margin-bottom: 10px;
}
#heading span{
  color: #38bbff;
}

.left-div p{
  font-size: 1.5rem;
  color: #a3a3a3;
  margin-bottom: 22px;
  text-align: justify;
  font-family: cursive;
  max-width: 600px;
}
.left-div .btn{
  margin-top: 20px;
  padding: 25px 70px;
  font-size: 20px;
  border-radius: 15px;
  background-color: #2eb3ff;
  border: none;
  color: #fff;
}
.right-div{
  flex: 1;
  justify-content: center;
  align-items: center;
}
.image img{
  justify-content: center;
  width: 700px;
  height: 700px;
}

/* As per the assigment rule i did everything not using any hover efect. All is made by me no use of any ai tool  */
