.index__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.index__main {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 15px 0;
  margin-left: 23%;
  border-top: 1px solid #ccc;
}

.index__bottom {
  display: flex;
  flex-direction: column;
  gap: 75px;
}

.main-index {
  align-items: center;
  margin-top: 50%;
}

.send-button {
  display: block;
  margin: 0 auto 30px;
  padding: 15px 25px;
  background-color: lightcoral;
  border-radius: 5px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 25px;
  color: white;
}

.send-button:hover {
  background-color: red;
}

.send-button:active {
  background-color: #777777;
}


@media (min-width: 901px) {
  .items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    gap: 10%;
    margin: 25px;
  }

  .item {
    text-align: center;
  }

  .item img {
    filter: invert(70%);
    width: 160px;
    height: auto;
  }

  .item div {
    text-align: center;
  }

  .marks-text {
    background-color: #777777;
    border-radius: 5px;
    padding: 10px;
    text-shadow: 3px 3px 18px rgba(0, 0, 0, 0.2);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: white;
    font-size: 15px;
  }
}

@media (max-width: 900px) {
  .items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 25px;
  }

  .item {
    display: flex;
    flex-direction: row;
    text-align: left;
  }

  .item img {
    filter: invert(70%);
    width: 120px;
    height: 80px;
  }

  .item div {
    text-align: left;
  }

  .marks-text {
    background-color: #777777;
    border-radius: 5px;
    padding: 10px;
    text-shadow: 3px 3px 18px rgba(0, 0, 0, 0.2);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: white;
    font-size: 17px;
  }
}

span {
  color: black;
}

.new-furniture {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  text-align: center;
  line-height: 30px;
  color: indianred;
  font-size: 200%;
  text-shadow: 3px 3px 18px rgba(0, 0, 0, 0.2);
  padding-bottom: 1%
}

.comparison {
  position: relative;
  overflow: hidden;
  width: 80% !important;
  height: auto !important;

  border-radius: 12px;
}

#gallery {
  padding: 3% !important;
  display: flex !important;
  justify-content: center !important;
  background-color: lightgray !important;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.separate-line {
  margin-top: 15px;
  margin-bottom: 15px;
  width: 80%;
  height: 3px;
  background-color: black;
  color: transparent;
}

@media (max-width: 600px) {
  .professional {
    font-size: 170%;
    padding-top: 5%;
    color: crimson;
  }
}

@media (max-width: 400px) {
  .professional {
    font-size: 140%;
    padding-top: 5%;
    color: crimson;
  }
}

.professional {
  padding-top: 5%;
  color: crimson;
}

.index-routes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  align-items: center;
  gap: 20px;
}

.button-link {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 93%;
  display: inline-block;
  padding: 15px 10px;
  color: #fff;
  background-color: #777777;
  text-decoration: none;
  border-radius: 5px;
}

.button-link:hover {
  background-color: coral;
}

@media (min-width: 901px) {
  .button-link {
    font-size: 200%;
  }
}