body {
  font-family: Arial, sans-serif;
  padding: 40px;
  background-color: #484848;
}

h1 {
  color: #c2c2c2;
}

.navbar{
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo{
  font-size: 2rem;
  font-weight: bold;
}

.nav-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
}

.nav-item a {
  color: rgb(76, 191, 0);
  text-decoration: none;
  font-weight: bold;
}

.nav-item a:hover{
  color: blueviolet;
  transform: scale(1, 2);
}

.hero{
  width: 100%;
  height: 90vh;
  background-image: url(./ai/bg-1.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 20px;
}