* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  justify-content: space-between;
  font-family: "Cutive Mono", monospace;
}

.stuck {
  min-width: 240px;
  position: sticky;
  top: 0;
  max-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.outer-content {
  min-height: 100vh;
  display: flex;
  gap: 20px;
  padding-top: 100px;
  align-items: center;
  flex-direction: column;
  /*    text-align: center;*/
  font-family: "Cutive Mono", monospace;
}

h1 {
  margin: 0;
}

h3 {
  font-weight: bold;
}

.content,
.intro,
.outro {
  font-size: 18px;
}

.home {
  background: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20x%3D%220%22%20y%3D%220%22%20width%3D%22160%22%20height%3D%2215%22%20viewBox%3D%220%200%20160%2015%22%20preserveAspectRatio%3D%22xMinYMin%22%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22%23FFFFFF%22%20stroke-opacity%3D%220.3%22%20stroke-miterlimit%3D%2210%22%20d%3D%22M0%200.5c26.7%200%2053.3%2014%2080%2014%2026.7%200%2053.3-14%2080-14M0-4.5c26.7%200%2053.3%2014%2080%2014%2026.7%200%2053.3-14%2080-14M0-9.5c26.7%200%2053.3%2014%2080%2014%2026.7%200%2053.3-14%2080-14M0%205.5c26.7%200%2053.3%2014%2080%2014%2026.7%200%2053.3-14%2080-14M0%2010.5c26.7%200%2053.3%2014%2080%2014%2026.7%200%2053.3-14%2080-14%22%2F%3E%3C%2Fsvg%3E),
    linear-gradient(to bottom, #fefefe 0, #eeeeee 100%) fixed;
  gap: 25px;
}

.type {
  transform: perspective(1000px) rotateY(6deg);
  padding: 25px;
  gap: 25px;
  border: 2px solid #eee;
}

.type-wrap:nth-child(even) .type {
  transform: perspective(1000px) rotateY(-6deg);
  flex-direction: row-reverse;
}

.logo {
  width: 120px;
  height: 120px;
  padding: 30px;
  border-radius: 50%;
  box-shadow: 0 0 30px rgb(0 0 0 / 10%);
  background-color: white;
}

.logo img {
  width: 100%;
  height: 100%;
}



.content-header {
  font-weight: bold;
  font-size: 20px;
  padding-bottom: 8px;
}

.intro,
.outro {
  max-width: 500px;
  font-size: 18px;
  text-align: center;
}

.intro {
  padding: 25px;
}

.intro h1 {
  margin-bottom: 10px;
}

.outro {
  padding-bottom: 50px;
}

.outro a {
  color: black;
  font-weight: bold;
}

.type {
  width: 650px;
  flex-direction: row;
  display: flex;
  min-height: 160px;
  margin-bottom: 35px;
  line-height: 18px;
  background: white;
  box-shadow: 0 0 30px rgb(0 0 0 / 10%);
}

.type-wrap {
  text-decoration: none;
  color: black;
}

.left img {
  width: 100%;
  height: auto;
  border: 2px solid #ddd;
}

.type .left,
.type .right {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.legal-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #333;
}

.legal article {
  max-width: 800px;
  padding: 40px;
}

article {
  max-width: 600px;
  margin: auto;
  padding-bottom: 5px;
  padding-top: 50px;
}

.mob-ad {
  display: none;
}

@media screen and (max-width: 1250px) {

  .type {
    flex-direction: column;
    width: 100%;
  }

  .type-wrap:nth-child(even) .type {
    flex-direction: column;
    width: 100%;
  }

  .type .left,
  .type .right {
    width: 100%;
  }

  .type-wrap {
    padding: 0 20px;
    width: 100%;
    display: block;
  }

}

@media screen and (max-width: 700px) {
  .type {
    flex-direction: column;
    width: 100%;
  }

  .type-wrap:nth-child(even) .type {
    flex-direction: column;
    width: 100%;
  }

  .type .left,
  .type .right {
    width: 100%;
  }

  .type-wrap {
    padding: 0 20px;
    width: 100%;
    display: block;
  }

  .stuck {
    display: none;
  }

  .mob-ad {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100px;
    margin-bottom: 10px;
  }

  .type-wrap + .mob-ad {
    min-height: 130px;
    margin-top: -30px;
    margin-bottom: 5px;
  }
}
