* {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-content: flex-start;

  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 300;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 15px;
  background: #eee;
}

.non__intro {
  padding-top: 20px;
  flex-direction: column;

}

.non__intro,
.non__links {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: #333;
  line-height: 1.5;
  text-align: center;
}

.non__intro h1 {
  font-size: 18pt;

}

.non__intro p {
  font-size: 14px;
}

.non__links {
  /* padding: 12px; */
  font-size: 24pt;
  margin-top: 10px;
}

.non__links a {
  color: #333;
  text-decoration: none;
}

.non_social {
  padding-left: 15px;
  padding-right: 15px;
}

.non__main {
  background: #fff;
  /* padding: 20px; */
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;

}

.non__main {
  display: flex;
  width: 100%;
}

@media only screen and (min-width: 1360px) {
  .non__main {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    /* padding: 24px; */
  }
}