* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  position: relative;
  padding: 0;
  margin: 0;
  font-size: 21px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

footer {
  width: 100%;
  height: 100px;
}

a {
  color: #ff962e;
  text-decoration: none;
  outline : none;
}

.no-break {
  white-space: nowrap;
}

.section__content {
  margin: 10px auto;
  padding: 10px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  place-content: flex-start;
  align-items: center;
  background-color: #f3f3f3;
}

.section__header {
  padding-top: 30px;
}

.content {
  max-width: 900px;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  place-content: flex-start;
  align-items: center;
}

.title, .content {
  text-align: center;
}

.title {
  position: relative;
  text-align: center;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  width: 100%;
  color: black;
}

.title span{
  background-color: white;
  position: relative;
  padding: 0 10px;
  z-index: 3;
}

.title:before {
  content: "";
  display: block;
  border-top: solid 1px #FF6600;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  border-radius: 20px;
}

.logo-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-container img {
  width: 300px;
}

.screenshot-container {
  width: 100%;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
}

.screenshot-container img {
  max-width: 600px;
  cursor: pointer;
  transition: 0.2s ease box-shadow, 0.2s ease border-radius;
  -moz-transition: 0.2s ease box-shadow, 0.2s ease border-radius;
  -webkit-transition: 0.2s ease box-shadow, 0.2s ease border-radius;
}

.screenshot-container img:hover {
  border-radius: 20px;
  -webkit-box-shadow: 0px 0px 23px 1px rgba(90, 79, 66, 1);
  -moz-box-shadow: 0px 0px 23px 1px rgba(90, 79, 66, 1);
  box-shadow: 0px 0px 23px 1px rgba(90, 79, 66, 1);
}

.btn-main {
  display: block;
  text-align: center;
  background: #ffbd00;
  color: black;
  border-radius: 20px;
  padding: 12px 30px;
  border: none;
  font-size: 1.4em;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s ease background-color;
  -moz-transition: 0.2s ease background-color;
  -webkit-transition: 0.2s ease background-color;
  box-shadow: 1px 1px 2px black;
}

.btn-main:hover {
  background-color: #439c36;
}