@import url("https://fonts.googleapis.com/css2?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&family=Vibes&display=swap");
* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
::selection {
  background-color: bisque;
}
header {
  background: linear-gradient(90deg, #0f172a, #1e293b);
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 80px;
  position: fixed;
  z-index: 99;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 200px;
  border-radius: 10px;
}
.logo {
  text-decoration: none;
  color: tomato;
  font-weight: 700;
  font-size: 2em;
  transition: 100ms;
  position: relative;
}
.logo::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 0;
  height: 2px;
  background-color: tomato;
  transition: 0.3s ease;
  transform: translateX(-50%);
}
.logo:hover::after {
  width: 90%;
}
.logo:hover {
  transform: scale(1.2);
  text-shadow: 0 0 9px aqua;
}
.navigation a {
  display: inline-block;
  text-decoration: none;
  color: tomato;
  font-size: 1.1em;
  font-weight: 500;
  padding: 30px;
  transition: 100ms;
  position: relative;
}

.navigation a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 0;
  height: 2px;
  background-color: tomato;
  transition: 0.3s ease;
  transform: translateX(-50%);
}

.navigation a:hover::after {
  width: 60%;
}

.navigation a:hover {
  transform: scale(1.2);
  text-shadow: 0 0 9px aqua;
}
.main {
  width: 100%;
  padding: 100px 200px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #0f172a;
  border-radius: 20px;
}
.main h2 {
  color: #fff;
  font-size: 1.6em;
  font-weight: 500;
}
.main span {
  display: inline-block;
  margin: 10px;
  color: tomato;
  font-size: 3em;
  font-weight: 600;
}
.main h3 {
  color: #fff;
  font-size: 2em;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 10px;
  margin-bottom: 30px;
}
.main-btn {
  display: inline-block;
  padding: 0.93em 2.18em;
  font-size: 1.5em;
  text-decoration: none;
  color: #fff;
  background-color: tomato;
  border-radius: 10px;
  letter-spacing: 1px;
  margin-bottom: 4px;
  border: 2px solid tomato;
  transition: 200ms linear;
}
.main-btn:hover {
  background-color: #0f172a;
  text-shadow: 0 0 9px aqua;
  box-shadow: 0 0 9px aqua;
}
.Social-icons a {
  display: inline-block;
  font-size: 2.5em;
  color: #fff;
  margin-top: 40px;
  padding-right: 30px;
  transition: 100ms linear;
}
.Social-icons a:hover {
  transform: scale(1.2);
  text-shadow: 0 0 9px aqua;
}
.title {
  display: flex;
  justify-content: center;
  color: tomato;
  font-size: 3em;
  font-weight: 700;
  margin-bottom: 30px;
}
.parent {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
.card {
  margin: 25px;
  width: 29em;
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  line-height: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: 300ms linear;
}
.card:hover {
  transform: scale(1.1);
}

.card i {
  font-size: 5em;
  color: tomato;
}
.card h2 {
  color: tomato;
  font-size: 1.9em;
  font-weight: 700;
}
.card p {
  font-size: 1.3em;
  font-weight: 500;
}

.Projects {
  background: #0f172a;
  border-radius: 10px;
}
.Projects .parent {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 50px;
}
.Projects .project-card {
  background-color: #fff;
  border: 2px solid #fff;
  border-radius: 10px;
  margin: 40px auto;
  min-height: 14em;
  width: 40em;
  overflow: hidden;
  transition: 200ms;
}
.Projects img {
  width: 100%;
}
.Projects .project-card:hover {
  transform: scale(1.1);
  box-shadow: 0 0 9px aqua;
}
.Projects .info {
  padding: 1em;
  text-align: center;
}
.Projects strong {
  display: flex;
  justify-content: center;
  text-transform: uppercase;
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 10px;
}
.Projects p {
  font-size: 1em;
  color: black;
  font-weight: 500;
}
.Projects a {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  text-decoration: none;
  color: #fff;
  background-color: tomato;
  border-radius: 6px;
  font-weight: 500;
  border: 2px solid tomato;
  transition: 0.3s;
}
.Projects a:hover {
  background-color: #fff;
  color: tomato;
}
footer {
  background-color: #0f172a;
  color: #fff;
  padding: 2em;
  display: flex;
  justify-content: space-between;
}
footer p {
  font-size: 1.3em;
  font-weight: 600;
}
footer span {
  color: blue;
}
@media (max-width: 1023px) {
  header {
    padding: 12px 15px;
  }
  .navigation a {
    padding: 4px;
    font-size: 0.8em;
  }
  .title {
    font-size: 1.8em;
  }
  section {
    padding: 80px;
  }
  .main h2 span {
    font-size: 1.5em;
  }
}
