
/**
	표준 Media Query
	@include mq($max-width: px) -> @media only screen and (max-width:px)
*/
/**
      Size PX-> REM 전환
      baseFontSize : 16 -> 1rem 설정
  */
/**
     Reset Code
 */
html {
  overflow-y: scroll;
}

body {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-size: 0.875rem;
  background-color: #181818;
  font-family: HelveticaNeue-Light, AppleSDGothicNeo-Light, 'Noto Sans', 'Malgun Gothic', '맑은 고딕', sans-serif;
  font-weight: 400;
  color: #b6b6b6;
}

html,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
img {
  margin: 0;
  padding: 0;
  border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1em;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul,
li {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

legend {
  position: absolute;
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
  text-indent: -9999em;
  overflow: hidden;
}

label,
input,
button,
select,
img {
  vertical-align: middle;
}

input,
button,
select,
textarea {
  outline: 0;
  margin: 0;
  padding: 0;
  font-family: HelveticaNeue-Light, AppleSDGothicNeo-Light, 'Noto Sans', 'Malgun Gothic', '맑은 고딕', sans-serif;
  font-weight: 400;
  -webkit-border-radius: 0;
  border: 0;
  outline: 0;
  background: transparent;
}

button {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

select {
  margin: 0;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
}

select::-ms-expand {
  display: none;
}

p {
  margin: 0;
  padding: 0;
  word-break: break-all;
}

hr {
  display: none;
}

pre {
  overflow-x: scroll;
  font-size: 1.1em;
}

em {
  font-style: normal;
}

a {
  color: #b6b6b6;
  text-decoration: none;
}

a:link,
a:visited {
  color: #b6b6b6;
  text-decoration: none;
}

a:hover,
a:focus,
a:active {
  color: #b6b6b6;
  text-decoration: none;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #161616;
}

::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

* {
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
}

h1, h3 {
  font-size: 20px;
}

@media only screen and (max-width: 1100px) {
  .content {
    margin-top: 35px !important;
  }
}

#app {
  padding: 12px;
  position: relative;
}

.content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.content .content-inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}

.content .content-inner .logo-area {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}

.content .content-inner .content-start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  position: relative;
  padding-top: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.content .content-inner .content-start p {
  line-height: 130%;
  color: #ddd;
}

.content .content-inner .content-start .rel-link {
  padding: 13px;
  background-color: #1348d5;
  color: white;
  text-align: center;
  margin-top: 30px;
}

.content .content-inner .content-start .twitter-link {
  padding: 13px;
  background-color: #3d3d3d;
  color: white;
  text-align: center;
  margin-top: 10px;
}

.content .content-inner .content-start h4 a {
  color: #ffe000;
}
