* {
  box-sizing: border-box;
}
html {
  height: 100%;
}
body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #000000;
  font-family: Arial, Helvetica, sans-serif;
}
p {
  margin: 0;
  padding: 0;
}
.wrapper {
  display: grid;
  grid-template: 80px 300px 1fr / minmax(0px, 1fr) 992px minmax(0px, 1fr);
}
header {
  grid-area: 1 / 1 / 2 / 4;
  background-color: #efefef;
}
.header-inner-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 992px;
  height: 100%;
  margin: 0 auto;
}
.logo {
  margin: auto 0;
  font-size: 1.6rem;
  font-weight: bold;
}
nav {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  width: 400px;
}
nav > ul {
  list-style: none;
  width: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-evenly;
}
.nav-link {
  color: #000000;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  width: 200px;
  height: 50px;
  text-align: center;
  padding: 10px;
  transition: background-color 0.3s, color 0.3s;
}
.nav-link:hover {
  background-color: rgb(0, 0, 0);
  color: #ffffff;
}
/* .nav-link > a {
  width: 100%;
  height: 100%;
} */
.home-hero {
  grid-area: 2 / 1 / 3 / 4;
  background-image: url("https://images.pexels.com/photos/269948/pexels-photo-269948.jpeg");
  background-size: cover;
  background-position: center 70%;
}
main {
  grid-area: 3 / 2 / 4 / 3;
}
.feature-sync-title {
  font-size: 40px;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 50px;
  color: #efefef;
}

@keyframes feature-animation {
  0% {
    box-shadow: 0px 0px 0px 0px rgba(130, 130, 0, 0.785);
  }
  50% {
    box-shadow: 0px 0px 20px 10px rgba(255, 255, 0, 0.5);
  }
  100% {
    box-shadow: 0px 0px 0px 0px rgba(130, 130, 0, 0.785);
  }
}

.feature-sync {
  width: 50%;
  height: 250px;
  margin: 0 auto;
  background-image: url("https://images.pexels.com/photos/296322/pexels-photo-296322.jpeg");
  background-size: cover;
  background-position: center 100%;
  border-radius: 10px;
  animation: feature-animation 2s ease-in-out infinite;
}
.feature-sync-blur {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  border-radius: 10px;
  padding: 20px;
  border: 2px solid rgb(78, 0, 121);
}
.feature-sync-blur > * {
  color: #efefef;
  text-align: center;
}
.feature-sync-caption {
  font-size: 2rem;
  margin-top: 10px;
  margin-bottom: 20px;
}
.feature-sync-para {
  font-size: 1.3rem;
}
.pricing-table {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  padding: 20px;
  margin-bottom: 50px;
}
.pricing-title {
  font-size: 40px;
  text-align: center;
  margin-top: 50px;
  color: #efefef;
}
.pricing-card {
  border: 2px solid black;
  border-radius: 10px;
  margin-top: 20px;
  padding: 30px;
  width: 300px;
  background-color: rgb(46, 46, 46);
  color: #efefef;
}
.pricing-card-title {
  font-size: 2rem;
  font-weight: bold;
}
.pricing-card-price {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 20px;
}
.pricing-card > ul {
  list-style: none;
  padding: 0;
  margin-bottom: 10px;
}
.pricing-card > ul > li {
  margin-bottom: 5px;
}
.join-us-wrapper {
  grid-area: 4 / 1 / 4 / 4;
  background-color: #00a7de;
  height: 350px;
  width: 100%;
}
.join-us {
  max-width: 992px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #efefef;
}
.join-us-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 55px;
}
.join-us-para {
  font-size: 1.5rem;
}
