@import url("https://fonts.googleapis.com/css2?family=Azeret+Mono:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Verdana, Tahoma, sans-serif;
  color: #0d1321;
  background-image: linear-gradient(to left, #b8e7fa, #e6e6fa);
}

.hero-heading p {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  opacity: 0.7;
}
.hero-heading h1 {
  font-size: 48px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 24px;
}

#navbar-logo {
  padding: 24px 70px;
  background-color: whitesmoke;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#navbar-logo h2 span {
  color: #ffa500;
}

.btn-color {
  background-image: linear-gradient(to right, #ffa500 0%, #ffd447 100%);

  font-size: 20px;
  font-weight: 600;
  width: 248px;
  height: 64px;

  padding: 16px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;

  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.btn-color:hover {
  background-image: linear-gradient(90deg, #ebe8e4 0%, #ffd447 100%);
  color: #ff881d;
  border-color: #ff881d;
  border: 1px solid;
}

/* hero section */

.hero-container {
  margin: 100px 70px;
  padding: 40px 60px;
  border-radius: 16px;
  background-image: linear-gradient(90deg, #e6edf9 100%);

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;

  gap: 32px;
}
.hero-image img {
  height: 240px;
}

/* why web developer */

#web-develop-container {
  margin: 0 70px;
}

.one-content {
  margin-bottom: 24px;
  /* padding: 0 200px; */
}
.one-content h2 {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 24px;
}
.one-content p {
  text-align: center;
  font-size: 16px;
  opacity: 0.7;
}

.two-content {
  /* width: 100%; */

  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-top: 48px;
  padding: 48px;
  border-radius: 16px;
  background-image: linear-gradient(90deg, #e6edf9 100%);
}

.two-content h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
  opacity: 0.7;
}
.two-content p {
  text-align: start;
  opacity: 0.7;
}
.text {
  margin-bottom: 32px;
}

.two-card img {
  width: 100%;
  object-fit: cover;
}

/* inspiration section */

#inspiration-content {
  margin: 100px 150px;
  max-width: 100%;

  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#inspiration-content .one-content p {
  font-family: "Courier New";
  letter-spacing: 2px;
}

.inspiration-video {
  margin-top: 48px;
  padding: 32px;
  width: 1100px;
  height: 620px;
  border-radius: 16px;
  border: 1px solid rgba(13, 19, 33, 0.2);
}
.inspiration-video iframe {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

/* target section */

#target-section {
  height: 100%;
}
#target-container {
  margin: 100px 100px 150px 100px;
}

.target-card {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 32px;
  margin-top: 48px;
  margin-bottom: 48px;
}
.one-card {
  background: linear-gradient(#e6edf9, #9de5ff);
  border-radius: 16px;
  width: 364px;
  padding: 50px 30px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.35);
}
.one-card img {
  width: 54px;
  margin-bottom: 24px;
}
.one-card h3,
a {
  margin-bottom: 24px;
  color: #0d1321;
  font-weight: 700;
}

.underline {
  position: relative;
  color: #0d1321;
  text-decoration: none;
}
.underline:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: currentColor;
  opacity: 0.5;
}

/* footer  */

#footer {
  margin: 50px 0 0 0;
  padding: 32px 100px;
  background-color: whitesmoke;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footerr {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.footer img {
  width: 36px;
}
.footer-container .bold {
  font-family: "Azeret Mono", monospace;
  font-size: 20px;
  font-weight: 700;
}
