body {
  background-color: black;
  font-family: "Exo 2", sans-serif;
}

nav {
  color: black;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  flex-basis: row;
  justify-content: space-between;

  background-color: black;
  color: white;
  width: 100%;
  border-bottom: 4px solid black;
  border-top: 5px solid black;
}
.nav-left {
  font-family: "Exo 2", sans-serif;
  text-shadow: #000 -4px 0 7px;
  padding-left: 3%;
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
}
.nav-right {
  display: flex;
  width: 50%;
  justify-content: end;
  place-self: center;
}

.nav-right > a {
  padding: 10px 10%;
}

.nav-right a {
  text-decoration: none;
  color: black;
}

.nav-right h2 {
  margin: 0;
  white-space: nowrap;
}
.nav-right a:nth-child(1) {
  color: white;
  border: 3px solid rgba(255, 255, 255, 0);
  border-radius: 40px;
  transition-duration: 300ms;
  margin-right: 1%;
}

.nav-right a:nth-child(2) {
  border: 3px solid rgb(255, 255, 255);
  background-color: black;
  color: white;
  border-radius: 40px;
  margin-right: 20px;
}

.body-section {
  display: grid;
  position: absolute;
  top: 110px;
  left: 0;
  width: 100%;
  grid-template: 1fr 0.2fr 0.8fr/ 1fr 1fr;
  max-width: 100%;
  max-height: 80%;
}
.body-section img {
  width: 100%;
  height: 80%;
}
.top-description img:hover {
  transition-duration: 700ms;
  filter: blur(2px) brightness(0.5);
}
.top-description {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
}

.top-description p {
  position: absolute;
  font-size: 3rem;
  color: white;
  top: 13%;
  left: 15%;

  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
}
strong {
  color: #ba5d2f;
}

.top-description a {
  position: absolute;
  color: white;
  top: 45%;
  left: 0;
  font-size: 2rem;
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
}




.demo {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 2;
  grid-row-end: 3;
  margin-bottom: 30px;
}

.demo img {
  position: relative;
  left: 20%;
  display: flex;
  width: 70%;
  height: 100%;
  border: 30px solid rgb(41, 40, 40);
  border-radius: 5px;
}
.demo p {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 2;
  grid-row-end: 3;
  position: absolute;
  top: 35%;
  left: 35%;
  font-weight: 700;
}

.step-by-step {
  color: white;
  background-color: grey;
  border: 30px solid rgb(41, 40, 40);
  border-radius: 5px;
  width: 70%;
  height: 95%;
  margin-bottom: 30px;
}

@media screen and (max-width: 630px) {
  .top-description p {
    grid-column-start: 1;
  }
  .body-section img {
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 1700px) {
  .top-description p {
    position: absolute;
    font-size: 4rem;
    color: white;
    top: 10%;
    left: 20%;

  }
}

@media screen and (max-width: 1000px) {
  .top-description p {
    position: absolute;
    font-size: 2rem;
    color: white;
    top: 10%;
    left: 10%;
  }
}

@media screen and (max-width: 634px){
  .top-description p {
    position: absolute;
    font-size: 1.3rem;
    color: white;
    top: 15%;
    left: 10%;
  }
}

