
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
body {
  background:#F1EEE6;
font-family: 'Plus Jakarta Sans', sans-serif;
}

.logo {
 display: flex;
 gap: 8px;
}

.logo span{
  color: #2A136A;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 24px;
  position: relative;
  top: 4px;
}
.nav {
  display: flex;
  justify-content: space-between;
  margin: 20px 10px;
}

.connect {
  background-color: #693FDA;
  border: none;
  border-radius: 19px;
  color: white;
  padding: 10px 25px;
  font-size: 17px;
font-family: 'Plus Jakarta Sans', sans-serif;
}

.hero {
  margin: 50px 40px;
  display: flex;
  justify-content: space-between;
}

.hero h1 {
  color: rgb(14, 14, 14);
  font-size: 64px;
  line-height: 65px;
}

.hero p {
  color: rgb(89, 83, 64);
  font-weight: 600;
  position: relative;
  bottom: 24px;
}

.himage {
  height: 300px;
  border-radius: 50%;
}
.cards {
  display: flex;
  margin: 50px 40px;
  gap: 25px;
}
.card {
  background-color: #11182700;
  width: 250px;
  padding: 15px 20px;
  border: 1px solid #ddd9cb;
}

.card h3 {
  color: rgb(0, 0, 0);
}

.card p {
  font-size: 14px;
  color: #5E5D59;
  
}

.b {
  background-color: #693FDA;
  color: white;
  border: none;
  padding: 10px 20px;
  width: 100%;
font-family: 'Plus Jakarta Sans', sans-serif;
  border-radius: 10px;
}

@media (max-width: 600px) {
  .hero {
    flex-direction: column;
  }

  .cards {
    flex-direction: column;
  }

  .himage {
    height: 200px;
  }


  .hero h1 {
  color: rgb(14, 14, 14);
  font-size: 48px;
  line-height: 45px;
}

.hero p{
  bottom: 4px;
}
}
