html, body {
  margin: 0;
  height: 100%;
}

* {
  font-family: adobe-text-pro, serif;
  font-size: 18px;
}

button {
  background-color: #666666;
  color: white;
  border: 1px solid gray;
  height: 30px;
  box-shadow: 1px 1px 5px 0px gray;
  border-radius: 20px;
}

button:hover, .css-button:hover {
  background-color: #e7e7e7;
  /*color: black;*/
  cursor: pointer;
}

#main-wrapper {
  min-height: 100%;
  margin-bottom: -277px;
}

.wrapper {
  height: 100%;
  margin-left: 20%;
  margin-right: 20%;
  padding-top: 5px;
  padding-bottom: 5px;
}

.flex-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.extra-padding {
  padding-top: 5vh;
  padding-bottom: 5vh;
}

.header-big {
  color: var(--big-header);
  font-size: 32px;
  font-weight: 600;
  text-shadow: 1px 0px 1px #4d4d4d;
  font-family: tahoma, sans-serif;
}

.header-medium {
  color: var(--medium-header);
  font-size: 20px;
  font-weight: 600;
  text-shadow: 1px 0px 1px #4d4d4d;
  font-family: tahoma, sans-serif;
}

.feature-text {
  display: inline-block;
  width: 75%;
  margin-top: 25px;
}

.text-cont, .flex-text {
  text-align: center;
  padding: 12px;
}

.flex-text {
  width: 45%;
}

.details-button {
  display: inline-block;
  background-color: #666666;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 22px;
  padding: 5px 10px;
  box-shadow: 1px 1px 5px 0px gray;
  margin-top: 30px;
  margin-bottom: 10px;
}

.details-button:hover {
  background-color: #e7e7e7;
  color: black;
}

.push {
  height: 277px;
}

.content1 {
  background: var(--content1-bg);
}

.content2 {
  box-shadow: 0px 0px 3px 0px #858585;
  background: var(--content2-bg);
  /*background: linear-gradient(90deg, rgba(242,244,248,1) 10%, rgba(255,255,255,1) 50%, rgba(242,244,248,1) 90%);*/
}

@media (max-width: 1750px) {
  .wrapper {
    margin-left: 15%;
    margin-right: 15%;
  }
}

@media (max-width: 1250px) {
  .wrapper {
    margin-left: 5%;
    margin-right: 5%;
  }
}


@media (max-width: 1025px) {
  .flex-wrapper {
    flex-flow: column;
  }
}

@media (max-width: 750px) {
  .wrapper {
    margin-left: 10px;
    margin-right: 10px;
  }
}