* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  text-transform: capitalize;
  font-family: Arial, Helvetica, sans-serif;
  /* background-color: #232325; */
  background-image: linear-gradient(to right, red, blue);
  /* background: linear-gradient(to right, #000000, #0f0f1f, #00eed4, #0061ff); */
  min-height: 100vh;
  color: white;
  background-repeat: no-repeat;
  background-position: center;
}
.navbar {
  /* background-color: red; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
}
.logo a {
  color: white;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
}
.nav-links {
  list-style: none;
  display: flex;
}
.nav-links li {
  margin-left: 20px;
  font-size: 16px;
  font-weight: 500;
}
.nav-links li:hover {
  text-decoration: underline;
  cursor: pointer;
  color: #ccc;
}
main {
  display: flex;
}
.content {
  padding: 25px 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.content h1 {
  font-size: 65px;
  font-weight: 700;
  max-width: 600px;
}
p {
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 1.9;
  max-width: 650px;
}
.btn {
  display: flex;
  gap: 10px;
}
.start-btn {
  padding: 10px 25px;
  border-radius: 99px;
  text-transform: capitalize;
  display: flex;
  gap: 10px;
  font-weight: bold;
  font-size: 17px;
}
.work-btn {
  padding: 10px 25px;
  border-radius: 99px;
  border: 2px solid #ccc;
  background-color: transparent;
  color: white;
}
.reding {
  color: yellow;
}
.content-2 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex: 1;
}
